mirror of https://github.com/wwarthen/RomWBW.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
385 B
20 lines
385 B
; 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
|
|
|
|
|
|
|