From 0b726e795762abe2a909eca2300957329718ec2c Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sun, 3 Dec 2017 11:46:50 -0500 Subject: Save word, rather than byte --- boot.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'boot.asm') diff --git a/boot.asm b/boot.asm index 2a2eada..816ef16 100644 --- a/boot.asm +++ b/boot.asm @@ -13,7 +13,7 @@ start: mov ss, ax ; set stack segment mov sp, 0200h ; 512 byte stack - mov [drive0], dl ; save first detected drive + mov [drive0], dx ; save first detected drive push banner ; call puts ; print version -- cgit