Files
2024-02-19 00:25:23 -05:00

20 lines
201 B
Plaintext

#ifdef _MINIX
.define _XYZ
.text
.extern __XYZ_
_XYZ:
jmp __XYZ_
#endif
#ifdef _SUN
.text
.globl _XYZ
_XYZ:
jmp __XYZ_
#endif
#ifdef _PYR
.text
.globl _XYZ
_XYZ:
jump __XYZ_
#endif