annotate src/cxux-crt0.s @ 80452:6d01fa145e93

[!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h. (XtPointer): Move typedef from macmenu.c. (enum button_type): Move enum from macmenu.c. (widget_value): Move typedef from macmenu.c. (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID) (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN) (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH) (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE) (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH) (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE) (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN) (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c. (Selection): Move typedef from macselect.c. (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from macterm.c. (mac_set_window_title, mac_set_window_modified, mac_is_window_visible) (mac_is_window_collapsed, mac_bring_window_to_front) (mac_send_window_behind, mac_hide_window, mac_show_window) (mac_collapse_window, mac_front_non_floating_window) (mac_active_non_floating_window, mac_activate_window) (mac_move_window_structure, mac_move_window, mac_size_window) (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
author YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
date Sun, 06 Apr 2008 01:58:05 +0000
parents fc2bcd2a8aad
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
25843
18e524802887 #ecrt0.c
Dave Love <fx@gnu.org>
parents:
diff changeset
1 /*
18e524802887 #ecrt0.c
Dave Love <fx@gnu.org>
parents:
diff changeset
2 * External symbol setup file for GNU Emacs on CX/UX
68651
3bd95f4f2941 Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 64770
diff changeset
3 * Copyright (C) 1990, 2002, 2003, 2004, 2005,
79759
fc2bcd2a8aad Add 2008 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 78319
diff changeset
4 * 2006, 2007, 2008 Free Software Foundation, Inc.
25843
18e524802887 #ecrt0.c
Dave Love <fx@gnu.org>
parents:
diff changeset
5 *
18e524802887 #ecrt0.c
Dave Love <fx@gnu.org>
parents:
diff changeset
6 * This file is part of GNU Emacs.
78319
1e0549b49b50 Standardize license text.
Glenn Morris <rgm@gnu.org>
parents: 75348
diff changeset
7 *
1e0549b49b50 Standardize license text.
Glenn Morris <rgm@gnu.org>
parents: 75348
diff changeset
8 * GNU Emacs is free software; you can redistribute it and/or modify
1e0549b49b50 Standardize license text.
Glenn Morris <rgm@gnu.org>
parents: 75348
diff changeset
9 * it under the terms of the GNU General Public License as published by
1e0549b49b50 Standardize license text.
Glenn Morris <rgm@gnu.org>
parents: 75348
diff changeset
10 * the Free Software Foundation; either version 3, or (at your option)
1e0549b49b50 Standardize license text.
Glenn Morris <rgm@gnu.org>
parents: 75348
diff changeset
11 * any later version.
1e0549b49b50 Standardize license text.
Glenn Morris <rgm@gnu.org>
parents: 75348
diff changeset
12 *
25843
18e524802887 #ecrt0.c
Dave Love <fx@gnu.org>
parents:
diff changeset
13 * GNU Emacs is distributed in the hope that it will be useful,
78319
1e0549b49b50 Standardize license text.
Glenn Morris <rgm@gnu.org>
parents: 75348
diff changeset
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1e0549b49b50 Standardize license text.
Glenn Morris <rgm@gnu.org>
parents: 75348
diff changeset
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1e0549b49b50 Standardize license text.
Glenn Morris <rgm@gnu.org>
parents: 75348
diff changeset
16 * GNU General Public License for more details.
1e0549b49b50 Standardize license text.
Glenn Morris <rgm@gnu.org>
parents: 75348
diff changeset
17 *
1e0549b49b50 Standardize license text.
Glenn Morris <rgm@gnu.org>
parents: 75348
diff changeset
18 * You should have received a copy of the GNU General Public License
1e0549b49b50 Standardize license text.
Glenn Morris <rgm@gnu.org>
parents: 75348
diff changeset
19 * along with GNU Emacs; see the file COPYING. If not, write to
1e0549b49b50 Standardize license text.
Glenn Morris <rgm@gnu.org>
parents: 75348
diff changeset
20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
1e0549b49b50 Standardize license text.
Glenn Morris <rgm@gnu.org>
parents: 75348
diff changeset
21 * Boston, MA 02110-1301, USA.
25843
18e524802887 #ecrt0.c
Dave Love <fx@gnu.org>
parents:
diff changeset
22 */
18e524802887 #ecrt0.c
Dave Love <fx@gnu.org>
parents:
diff changeset
23
18e524802887 #ecrt0.c
Dave Love <fx@gnu.org>
parents:
diff changeset
24 /*
18e524802887 #ecrt0.c
Dave Love <fx@gnu.org>
parents:
diff changeset
25 * This file makes the start of the text and data regions of the program
18e524802887 #ecrt0.c
Dave Love <fx@gnu.org>
parents:
diff changeset
26 * clearly visible to the GNU Emacs C source code, without any dependencies
18e524802887 #ecrt0.c
Dave Love <fx@gnu.org>
parents:
diff changeset
27 * on any changes made to the standard C runtime startup module, crt0.o.
18e524802887 #ecrt0.c
Dave Love <fx@gnu.org>
parents:
diff changeset
28 * It depends, however, on this file being passed down to the linker (ld)
18e524802887 #ecrt0.c
Dave Love <fx@gnu.org>
parents:
diff changeset
29 * before any others, and the linker's behavior of assigning increasing
18e524802887 #ecrt0.c
Dave Love <fx@gnu.org>
parents:
diff changeset
30 * addresses as it finds symbols.
18e524802887 #ecrt0.c
Dave Love <fx@gnu.org>
parents:
diff changeset
31 */
18e524802887 #ecrt0.c
Dave Love <fx@gnu.org>
parents:
diff changeset
32 /* C symbol _start marks beginning of text region. */
18e524802887 #ecrt0.c
Dave Love <fx@gnu.org>
parents:
diff changeset
33 .text
18e524802887 #ecrt0.c
Dave Love <fx@gnu.org>
parents:
diff changeset
34 .globl __start
18e524802887 #ecrt0.c
Dave Love <fx@gnu.org>
parents:
diff changeset
35 __start:
18e524802887 #ecrt0.c
Dave Love <fx@gnu.org>
parents:
diff changeset
36 /* C symbol data_start marks beginning of data region. */
18e524802887 #ecrt0.c
Dave Love <fx@gnu.org>
parents:
diff changeset
37 .data
18e524802887 #ecrt0.c
Dave Love <fx@gnu.org>
parents:
diff changeset
38 .globl _data_start
18e524802887 #ecrt0.c
Dave Love <fx@gnu.org>
parents:
diff changeset
39 _data_start: .space 4
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 25843
diff changeset
40
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 25843
diff changeset
41 /* arch-tag: ba84e4dc-615d-4a81-898c-f5b98ec71c9d
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 25843
diff changeset
42 (do not change this comment) */