From ba26bd896c49c9d42fc572b4e5221a4fab93c18d Mon Sep 17 00:00:00 2001 From: spagoot <39144253+spagootie@users.noreply.github.com> Date: Wed, 1 Jul 2020 11:00:33 -0400 Subject: [PATCH] fixed a bug that made sounds glitchy --- pcano.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcano.asm b/pcano.asm index 7e6412c..19eb29b 100644 --- a/pcano.asm +++ b/pcano.asm @@ -71,7 +71,7 @@ playnote: or al, 00000011b out 61h, al - in al, 60 ; makes it so the note stops when the key is released + in al, 60h ; makes it so the note stops when the key is released mov dl, al waitforrelease: in al, 60h