Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3245 Albom 1
 
2
    org     0x0
3
4
 
5
    dd	    0x01	   ; header version
6
    dd	    START	   ; start of code
7
    dd	    I_END	   ; size of image
8
    dd	    0x10000	   ; memory for app
9
    dd	    0x10000	   ; esp
10
    dd	    param_area	   ; I_Param
11
    dd	    app_path	   ; I_Path
12
13
 
14
START:			   ; start of execution
15
16
 
17
18
 
19
 call _sc_gets
20
21
 
22
 call _sc_puts
23
24
 
25
26
 
27
 int 0x40
28
29
 
30
 
31
32
 
33
app_path	rb  256
34
s rb 256
35