Subversion Repositories Kolibri OS

Rev

Rev 8144 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8144 Rev 8145
Line 1... Line 1...
1
kos32-bcc -S -v- -R- -6 -a4 -O2 -Og -Oi -Ov -OS -k- -D__KOLIBRI__ -Iinclude hello.cpp
1
kos32-bcc -S -v- -R- -6 -a4 -O2 -Og -Oi -Ov -OS -k- -D__KOLIBRI__ -Iinclude hello.cpp
-
 
2
 
-
 
3
echo STACKSIZE equ 102400 \n HEAPSIZE equ 102400 \n include "..\..\..\proc32.inc" \ninclude "$(INCLUDE)/kos_start.inc" \n include "$(INCLUDE)/kos_func.inc" \n include "$(INCLUDE)/kos_heap.inc" > kos_make.inc
-
 
4
 
2
echo include "kos_make.inc" > f_hello.asm
5
echo include "kos_make.inc" > f_hello.asm
3
t2fasm < hello.asm >> f_hello.asm
6
t2fasm < hello.asm >> f_hello.asm
4
fasm f_hello.asm hello.kex
7
fasm f_hello.asm hello.kex
5
kpack hello.kex
8
kpack hello.kex
6
pause
9
pause
7
10