mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 22:43:15 -06:00
21 lines
405 B
C
21 lines
405 B
C
; A few handy defines to make TASM more like typcial
|
|
; motorola syntax
|
|
|
|
.MSFIRST ; Most Significant byte first
|
|
|
|
#define EQU .EQU
|
|
#define ORG .ORG
|
|
#define RMB .BLOCK
|
|
#define FCB .BYTE
|
|
#define FCC .TEXT
|
|
#define FDB .WORD
|
|
|
|
#define equ .EQU
|
|
#define org .ORG
|
|
#define rmb .BLOCK
|
|
#define fcb .BYTE
|
|
#define fcc .TEXT
|
|
#define fdb .WORD
|
|
|
|
|