Subversion Repositories Kolibri OS

Rev

Rev 7836 | 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. APP_MEMORY     = 0x00800000
  11.  
  12. DEFAULT_WIN_W = 450
  13. DEFAULT_WIN_H = 350
  14. WIN_MIN_W     = 400
  15. WIN_MIN_H     = 350
  16. LINE_H = 25
  17. RIGHT_BTN_W = 80
  18.  
  19. MAX_PATH       = 100
  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. struc path name:?& {
  34.         .:
  35.         db name
  36.         rb MAX_PATH-$+. }
  37.