Subversion Repositories Kolibri OS

Rev

Rev 7836 | Rev 9459 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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