summaryrefslogtreecommitdiff
BranchCommit messageAuthorAge
mainob-lua: Support all types and multiple values in resultsRudolf Adamkovič32 hours
bugfixox-ascii: Fix broken link export for broken fuzzy linksIhor Radchenko32 hours
emacs-syncUpdate hard-coded versions for sync with EmacsKyle Meyer2 months
 
TagDownloadAuthorAge
release_9.6.27org-mode-release_9.6.27.tar.gz  Ihor Radchenko7 days
release_9.6.26org-mode-release_9.6.26.tar.gz  Ihor Radchenko14 days
release_9.6.25org-mode-release_9.6.25.tar.gz  Ihor Radchenko3 weeks
release_9.6.24org-mode-release_9.6.24.tar.gz  Ihor Radchenko4 weeks
release_9.6.23org-mode-release_9.6.23.tar.gz  Ihor Radchenko5 weeks
release_9.6.22org-mode-release_9.6.22.tar.gz  Ihor Radchenko5 weeks
release_9.6.21org-mode-release_9.6.21.tar.gz  Ihor Radchenko7 weeks
release_9.6.20org-mode-release_9.6.20.tar.gz  Ihor Radchenko8 weeks
release_9.6.19org-mode-release_9.6.19.tar.gz  Ihor Radchenko2 months
release_9.6.18org-mode-release_9.6.18.tar.gz  Ihor Radchenko3 months
[...]
 
AgeCommit messageAuthorFilesLines
32 hoursob-lua: Support all types and multiple values in resultsHEADmainRudolf Adamkovič3-33/+104
32 hoursMerge branch 'bugfix'Ihor Radchenko0-0/+0
32 hoursox-ascii: Fix broken link export for broken fuzzy linksbugfixIhor Radchenko1-8/+9
32 hoursox-ascii: Fix broken link export for broken fuzzy linksIhor Radchenko1-8/+9
33 hoursob-exp: Preserve header arguments in source block after processingIhor Radchenko3-13/+58
2 daysdoc/org-manual.org: Document `org-emphasize'Arash Esbati1-1/+11
2 daysox-latex: New option to customize LaTeX footnote commandAlexander Gogl2-2/+25
3 daysorg-fold: Fix regression after b03ece433Ihor Radchenko1-1/+1
3 daysMerge branch 'bugfix'Ihor Radchenko1-7/+9
3 daysdoc/org-manual.org: Fix description of switches in literal examplesIhor Radchenko1-7/+9
[...]
 
Clone
git://git.savannah.gnu.org/emacs/org-mode.git
https://git.savannah.gnu.org/git/emacs/org-mode.git
ssh://git.savannah.gnu.org/srv/git/emacs/org-mode.git
n value='scratch/electric-pair-cleanup-and-49518-bugfix'>scratch/electric-pair-cleanup-and-49518-bugfix Emacs source repository
summaryrefslogtreecommitdiff
path: root/src/m/tek4300.h
blob: 9164701b0e0ab4ea984ad6fb260816daafd78f71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/* machine description file for tek4300.
   Copyright (C) 1988 Free Software Foundation, Inc.

This file is part of GNU Emacs.

GNU Emacs is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 1, or (at your option)
any later version.

GNU Emacs is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Emacs; see the file COPYING.  If not, write to
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */


/* The following line tells the configuration script what sort of 
   operating system this machine is likely to run.
   USUAL-OPSYS="bsd4-3"  */

/* The following three symbols give information on
 the size of various data types.  */

#define SHORTBITS 16		/* Number of bits in a short */

#define INTBITS 32		/* Number of bits in an int */

#define LONGBITS 32		/* Number of bits in a long */

/* 68000 has lowest-numbered byte as most significant */

#define BIG_ENDIAN

/* Define NO_ARG_ARRAY if you cannot take the address of the first of a
 * group of arguments and treat it as an array of the arguments.  */

#undef NO_ARG_ARRAY

/* Define WORD_MACHINE if addresses and such have
 * to be corrected before they can be used as byte counts.  */

#undef WORD_MACHINE

/* Define how to take a char and sign-extend into an int.
   On machines where char is signed, this is a no-op.  */

#define SIGN_EXTEND_CHAR(c) (c)

/* Now define a symbol for the cpu type, if your compiler
   does not define it automatically.  */

#define tek4300

/* Use type int rather than a union, to represent Lisp_Object */

#define NO_UNION_TYPE

/* Data type of load average, as read out of kmem.  */

#define LOAD_AVE_TYPE long

/* Convert that into an integer that is 100 for a load average of 1.0  */

#define LOAD_AVE_CVT(x) (x)

/* Define NO_REMAP if memory segmentation makes it not work well
   to change the boundary between the text section and data section
   when Emacs is dumped.  If you define this, the preloaded Lisp
   code will not be sharable; but that's better than failing completely.  */

#define NO_REMAP

/* Define C_ALLOCA if this machine does not support a true alloca
   and the one written in C should be used instead. */

#define C_ALLOCA

/* setjmp and longjmp can safely replace _setjmp and _longjmp, */

#define _longjmp longjmp
#define _setjmp setjmp

/* The text segment always starts at a fixed address.
   This way we don't need to have a label _start defined.  */

#define TEXT_START 0

/* The Tektronix exec struct for ZMAGIC files is struct zexec */

#define EXEC_HDR_TYPE struct zexec

/* The entry-point label (start of text segment) is `start', not `__start'.  */

#define DEFAULT_ENTRY_ADDRESS start