about summary refs log tree commit diff stats
path: root/ex1.subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2021-04-04 16:30:40 -0700
committerKartik Agaram <vc@akkartik.com>2021-04-04 16:30:40 -0700
commit2839c89b804fc7145735b5907cd809151190c571 (patch)
treec951ca356766a18a6236354ff8bf41d7b029e7c6 /ex1.subx
parent3e9a266eda4b2b69e504957b052482e1d0bdcada (diff)
downloadmu-2839c89b804fc7145735b5907cd809151190c571.tar.gz
delete some obsolete files
They stopped working ever since boot.subx started relying on functions
(for the disk driver) implemented in Mu.
Diffstat (limited to 'ex1.subx')
-rw-r--r--ex1.subx20
1 files changed, 0 insertions, 20 deletions
diff --git a/ex1.subx b/ex1.subx
deleted file mode 100644
index bf6b5486..00000000
--- a/ex1.subx
+++ /dev/null
@@ -1,20 +0,0 @@
-# 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 ex1.subx   # emits disk.img
-# To run:
-#   qemu-system-i386 disk.img
-# Or:
-#   bochs -f bochsrc                      # bochsrc loads disk.img
-
-== code
-
-Entry:
-  {
-    eb/jump loop/disp8
-  }
-
-# vim:ft=subx