home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / assembler / as / src / h / m_cpu < prev    next >
Encoding:
Text File  |  1992-07-20  |  576 b   |  33 lines

  1.  
  2. /*
  3.  * m_cpu.h
  4.  * Copyright © 1992 Niklas Röjemo
  5.  */
  6.  
  7. #ifndef _m_cpu_h
  8. #define _m_cpu_h
  9.  
  10.  
  11. #define M_MNEM 0x01e00000
  12.  
  13. #define M_ADC 0x00a00000
  14. #define M_ADD 0x00800000
  15. #define M_AND 0x00000000
  16. #define M_BIC 0x01c00000 
  17. #define M_EOR 0x00200000
  18. #define M_MOV 0x01a00000
  19. #define M_MVN 0x01e00000
  20. #define M_ORR 0x01800000
  21. #define M_RSB 0x00600000
  22. #define M_RSC 0x00e00000
  23. #define M_SBC 0x00c00000
  24. #define M_SUB 0x00400000
  25. #define M_CMN 0x01600000
  26. #define M_CMP 0x01400000
  27. #define M_TEQ 0x01200000
  28. #define M_TST 0x01000000
  29. #define M_MLA 0x00200090
  30. #define M_MUL 0x00000090
  31.  
  32. #endif
  33.