about summary refs log tree commit diff stats
path: root/502test.mu
Commit message (Expand)AuthorAgeFilesLines
* update vocabulary documentationKartik K. Agaram2021-03-081-3/+3
* 7842 - new directory organizationKartik K. Agaram2021-03-031-0/+43
or Kartik K. Agaram <vc@akkartik.com> 2021-03-14 21:41:47 -0700 committer Kartik K. Agaram <vc@akkartik.com> 2021-03-14 21:41:47 -0700 rename boot.hex to boot.subx' href='/akkartik/mu/commit/ex1.subx?h=main&id=98feca922e46c82d1efdb44b99021b771bdac44d'>98feca92 ^
c1b1d1f4 ^


da438fa9 ^
c1b1d1f4 ^
32bb01ba ^

952ccfc6 ^
43e81944 ^


c1b1d1f4 ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20




                                                                              
                        
                                                          


                             
                                                                       
 

       
     


                      

             
# The simplest possible program: just an infinite loop.
# All is well if your computer clears screen and hangs without restarting.
# On an emulator the window may get bigger to accomodate the higher-resolution
# graphics mode.
#
# To build a disk image:
#   ./translate_subx boot.subx ex2.subx   # emits disk.img
# To run:
#   qemu-system-i386 disk.img
# Or:
#   bochs -f baremetal/boot.bochsrc       # boot.bochsrc loads disk.img

== code

main:
  {
    eb/jump loop/disp8
  }

# vim:ft=subx