Subversion Repositories Kolibri OS

Rev

Rev 7859 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. ID_CLOSE_BTN      = 1
  2. ID_COMPILE_BTN    = 2
  3. ID_EXECUTE_BTN    = 3
  4. ID_EXECDBG_BTN    = 4
  5. ID_OPENDLG_BTN    = 5
  6.  
  7. NORMAL_MODE    = 8
  8. CONSOLE_MODE   = 32
  9.  
  10. DEFAULT_WIN_W = 450
  11. DEFAULT_WIN_H = 350
  12.  
  13. WIN_MIN_W = 350
  14. WIN_MIN_H = 300
  15.  
  16. LINE_H = 25
  17. RIGHT_BTN_W = 80
  18.  
  19. APP_MEMORY     = 0x00800000
  20.  
  21. macro mmov reg,a1,a2 {
  22.  mov reg,(a1) shl 16 + (a2)
  23. }
  24.  
  25. macro madd reg,a1,a2 {
  26.  add reg,(a1) shl 16 + (a2)
  27. }
  28.  
  29. macro msub reg,a1,a2 {
  30.  sub reg,(a1) shl 16 + (a2)
  31. }
  32.  
  33.  
  34.