home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / assembler / tasm / ASM_H / MOTO_H < prev   
Encoding:
Text File  |  1992-09-02  |  385 b   |  21 lines

  1. ; A few handy defines to make TASM more like typcial 
  2. ; motorola syntax
  3.  
  4. .MSFIRST        ; Most Significant byte first
  5.  
  6. #define EQU     .EQU
  7. #define ORG     .ORG
  8. #define RMB     .BLOCK
  9. #define FCB     .BYTE
  10. #define FCC     .TEXT
  11. #define FDB     .WORD
  12.  
  13. #define equ     .EQU
  14. #define org     .ORG
  15. #define rmb     .BLOCK
  16. #define fcb     .BYTE
  17. #define fcc     .TEXT
  18. #define fdb     .WORD
  19.  
  20.  
  21.