blob: 64819c2efc433e2da3c229a3e9f43400d99846eb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
[tasks.boot]
command = "nasm"
args = ["-f", "bin", "-o", "boot.bin", "boot.asm"]
[tasks.build]
dependencies = ["boot"]
[tasks.clean]
command = "rm"
args = ["-f", "boot.bin"]
|