Mercurial > emacs
annotate src/cxux-crt0.s @ 79306:18f8d176549a
(printing): Fix :version, printing.el was included
for in emacs-22.1.
(pr-path-style, pr-path-alist, pr-txt-name)
(pr-txt-printer-alist, pr-ps-name, pr-ps-printer-alist)
(pr-temp-dir, pr-ps-temp-file, pr-file-modes, pr-gv-command)
(pr-gs-command, pr-gs-switches, pr-gs-device, pr-gs-resolution)
(pr-print-using-ghostscript, pr-file-tumble, pr-auto-region)
(pr-auto-mode, pr-mode-alist, pr-ps-utility)
(pr-ps-utility-alist, pr-menu-char-height, pr-menu-char-width)
(pr-setting-database, pr-visible-entry-list)
(pr-delete-temp-file, pr-list-directory, pr-buffer-name)
(pr-buffer-name-ignore, pr-buffer-verbose): Remove incorrect
:version.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Thu, 01 Nov 2007 03:54:15 +0000 |
parents | 1e0549b49b50 |
children | fc2bcd2a8aad f55f9811f5d7 |
rev | line source |
---|---|
25843 | 1 /* |
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, |
75348 | 4 * 2006, 2007 Free Software Foundation, Inc. |
25843 | 5 * |
6 * This file is part of GNU Emacs. | |
78319 | 7 * |
8 * GNU Emacs is free software; you can redistribute it and/or modify | |
9 * it under the terms of the GNU General Public License as published by | |
10 * the Free Software Foundation; either version 3, or (at your option) | |
11 * any later version. | |
12 * | |
25843 | 13 * GNU Emacs is distributed in the hope that it will be useful, |
78319 | 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 * GNU General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU General Public License | |
19 * along with GNU Emacs; see the file COPYING. If not, write to | |
20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |
21 * Boston, MA 02110-1301, USA. | |
25843 | 22 */ |
23 | |
24 /* | |
25 * This file makes the start of the text and data regions of the program | |
26 * clearly visible to the GNU Emacs C source code, without any dependencies | |
27 * on any changes made to the standard C runtime startup module, crt0.o. | |
28 * It depends, however, on this file being passed down to the linker (ld) | |
29 * before any others, and the linker's behavior of assigning increasing | |
30 * addresses as it finds symbols. | |
31 */ | |
32 /* C symbol _start marks beginning of text region. */ | |
33 .text | |
34 .globl __start | |
35 __start: | |
36 /* C symbol data_start marks beginning of data region. */ | |
37 .data | |
38 .globl _data_start | |
39 _data_start: .space 4 | |
52401 | 40 |
41 /* arch-tag: ba84e4dc-615d-4a81-898c-f5b98ec71c9d | |
42 (do not change this comment) */ |