This commit is contained in:
Kartik K. Agaram 2021-03-14 21:14:10 -07:00
parent 6525ccc8ec
commit 43e8194435
4 changed files with 3 additions and 10 deletions

View File

@ -13,6 +13,8 @@
== code
main:
e9/jump main/disp32
{
eb/jump loop/disp8
}
# vim:ft=subx

View File

@ -9,9 +9,6 @@
# qemu-system-i386 disk.img
# Or:
# bochs -f baremetal/boot.bochsrc # boot.bochsrc loads disk.img
#
# Expected output:
# html/baremetal.png
# main: (address 0x9400)

3
ex2.mu
View File

@ -6,9 +6,6 @@
# qemu-system-i386 disk.img
# Or:
# bochs -f baremetal/boot.bochsrc # boot.bochsrc loads disk.img
#
# Expected output:
# html/baremetal.png
fn main {
var y/eax: int <- copy 0

View File

@ -6,9 +6,6 @@
# qemu-system-i386 disk.img
# Or:
# bochs -f baremetal/boot.bochsrc # boot.bochsrc loads disk.img
#
# Expected output:
# html/baremetal.png
== code