summaryrefslogtreecommitdiff
path: root/bios/bios.ha
diff options
context:
space:
mode:
authorAlejandro Sior <aho@sior.be>2022-05-21 12:05:07 +0200
committerAlejandro Sior <aho@sior.be>2022-05-21 12:05:07 +0200
commit35c9df451d4f415632a4a1f64b06d1de12340687 (patch)
treeeae162590c9087639ba20b000d357cfbdcd0ea6a /bios/bios.ha
parent68e5c0c5c9dc26e9c7ce4bf5252719ee8dc4b3ae (diff)
bios::drive: fix the read function
Diffstat (limited to 'bios/bios.ha')
-rw-r--r--bios/bios.ha2
1 files changed, 1 insertions, 1 deletions
diff --git a/bios/bios.ha b/bios/bios.ha
index aa69f8a..5a3c1aa 100644
--- a/bios/bios.ha
+++ b/bios/bios.ha
@@ -15,7 +15,7 @@ export let regs: state;
// The address of a 512 bytes workspace that is located below 0xFFFFF and can be used to store the results
// of various bios calls
-export const @symbol("_ws") ws: u16;
+export const @symbol("_ws") ws: [4096]u8;
// The boot drive number as given by the BIOS at boot time
export const @symbol("drive_no") drive_number: u8;