about summary refs log tree commit diff stats
path: root/400.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-03-27 17:47:23 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-03-27 17:50:44 -0700
commit7bf8adb893dcc524c7f1bc5e8f984385c9138d7d (patch)
tree7ae60840d8cb0356cee7a76cfd3c15bb5de4e58c /400.mu
parent9818f1de981fe9206940cf89e9422388f8853cc2 (diff)
downloadmu-7bf8adb893dcc524c7f1bc5e8f984385c9138d7d.tar.gz
explicitly pass data disk to main
Diffstat (limited to '400.mu')
-rw-r--r--400.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/400.mu b/400.mu
index 2cf3c126..7bef992a 100644
--- a/400.mu
+++ b/400.mu
@@ -9,8 +9,8 @@ sig draw-cursor-on-real-screen g: grapheme
 sig read-key kbd: (addr keyboard) -> _/eax: byte
 
 # disk
-sig load-first-sector-from-primary-bus-secondary-drive out: (addr stream byte)
-sig store-first-sector-to-primary-bus-secondary-drive out: (addr stream byte)
+sig load-sector disk: (addr disk), lba: int, out: (addr stream byte)
+sig store-sector disk: (addr disk), lba: int, out: (addr stream byte)
 
 # mouse
 sig read-mouse-event -> _/eax: int, _/ecx: int