29523c7e ^
1 2 3 4 5 6 7 8 9 10
11 12 13 14 15 16 17 18<#!/bin/sh # Translate a Mu program to a bootable disk image. # # This script uses emulation, so it does not require x86 or Linux. However it # is slow. set -e set -v cat $* [0-9]*.mu |linux/bootstrap/bootstrap run linux/mu > a.subx ./translate_subx_emulated boot.subx mu-init.subx [0-9]*.subx a.subx
#!/bin/sh # Translate a Mu program to a bootable disk image. # # This script uses emulation, so it does not require x86 or Linux. However it # is slow. set -e set -v cat $* [0-9]*.mu |linux/bootstrap/bootstrap run linux/mu > a.subx ./translate_subx_emulated boot.subx mu-init.subx [0-9]*.subx a.subx