diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-12-27 11:39:17 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-12-27 11:39:17 -0800 |
commit | 46cf7b79083f9ebe4c70f232fe564b62d09eac20 (patch) | |
tree | ca3d9230b183d2da36572cd5c53c4e3d389d818e /baremetal | |
parent | 490b26d0614f685990dcc9225c7826a34de77b48 (diff) | |
download | mu-46cf7b79083f9ebe4c70f232fe564b62d09eac20.tar.gz |
7427
Diffstat (limited to 'baremetal')
-rw-r--r-- | baremetal/ex1.hex | 2 | ||||
-rw-r--r-- | baremetal/ex2.hex | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/baremetal/ex1.hex b/baremetal/ex1.hex index d891b47e..238823e9 100644 --- a/baremetal/ex1.hex +++ b/baremetal/ex1.hex @@ -5,7 +5,7 @@ # # To convert to a disk image, first prepare a realistically sized disk image: # dd if=/dev/zero of=disk.img count=20160 # 512-byte sectors, so 10MB -# Load the disk image: +# Load the program on the disk image: # cat baremetal/boot.hex baremetal/ex1.hex |./bootstrap run apps/hex > a.bin # dd if=a.bin of=disk.img conv=notrunc # To run: diff --git a/baremetal/ex2.hex b/baremetal/ex2.hex index 09103bcd..a2f91106 100644 --- a/baremetal/ex2.hex +++ b/baremetal/ex2.hex @@ -2,7 +2,7 @@ # # To run, first prepare a realistically sized disk image: # dd if=/dev/zero of=disk.img count=20160 # 512-byte sectors, so 10MB -# Load the disk image: +# Load the program on the disk image: # cat baremetal/boot.hex baremetal/ex2.hex |./bootstrap run apps/hex > a.bin # dd if=a.bin of=disk.img conv=notrunc # To run: |