racket/s/i3.def
Matthew Flatt 29bdb304cf reduce duplication of OS & architecture info in "s/*.def"
For example, if the number of floating-point registers in "x86_64.ss"
changes, now only one ".def" file has to change instead of 14 ".def"
files.

original commit: c79524cc3eb516d9bee1708c06b80e3688fdd2ff
2020-07-25 12:41:09 -06:00

13 lines
345 B
Modula-2

(define-constant architecture 'x86)
(define-constant ptr-bits 32)
(define-constant asm-arg-reg-max 1)
(define-constant asm-arg-reg-cnt 1)
(define-constant asm-fpreg-max 2)
(define-constant native-endianness 'little)
(define-constant unaligned-floats #t)
(define-constant unaligned-integers #t)
(define-constant integer-divide-instruction #t)