-
Notifications
You must be signed in to change notification settings - Fork 3
/
make.bat
27 lines (23 loc) · 1.06 KB
/
make.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
nasm -f bin software\init.asm -o init.bin
nasm -f bin software\login.asm -o login.bin
nasm -f bin software\shell.asm -o shell.bin
nasm -f bin software\help.asm -o help.bin
nasm -f bin software\uptime.asm -o uptime.bin
nasm -f bin software\moko.asm -o moko.bin
nasm -f bin software\ps.asm -o ps.bin
nasm -f bin software\date.asm -o date.bin
nasm -f bin software\ls.asm -o ls.bin
nasm -f bin software\args.asm -o args.bin
nasm -f bin software\touch.asm -o touch.bin
nasm -f bin software\free.asm -o free.bin
nasm -f bin software\conf.asm -o conf.bin
nasm -f bin software\ascii.asm -o ascii.bin
nasm -f bin software\colors.asm -o colors.bin
nasm -f bin software\msg.asm -o msg.bin
nasm -f bin software\test.asm -o test.bin
nasm -f bin software\menu.asm -o menu.bin
nasm -f bin kernel.asm -o kernel.bin
nasm -f bin bootloader\stage2.asm -o stage2.bin
nasm -f bin bootloader\stage1.asm -o build\disk.raw
del /F /Q init.bin login.bin shell.bin help.bin uptime.bin moko.bin ps.bin date.bin ls.bin args.bin touch.bin free.bin conf.bin ascii.bin colors.bin msg.bin test.bin menu.bin
pause