From a2598a44986128a93551e4c167ecf52f51e7b0f9 Mon Sep 17 00:00:00 2001 From: Clanmaster21 Date: Thu, 17 Oct 2019 20:12:22 +0100 Subject: [PATCH] Replaced some nop's There were some doubled up nop's, so I replaced them with paired pushes and pops, saving 4 bytes and wasting 2-3 extra cycles over the original nop's, so there shouldn't be a problem with not waiting long enough. --- kernel/sms/kbd.asm | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/kernel/sms/kbd.asm b/kernel/sms/kbd.asm index 8a3a178..cfb60fe 100644 --- a/kernel/sms/kbd.asm +++ b/kernel/sms/kbd.asm @@ -19,8 +19,7 @@ smskbdFetchKCA: ; Port A TH output, low ld a, 0b11011101 out (0x3f), a - nop - nop + push hl ; nop, pairs with a pop later in a, (0xdc) ; bit 3:0 are our dest bits 3:0. handy... and 0b00001111 @@ -28,8 +27,7 @@ smskbdFetchKCA: ; Port A TH output, high ld a, 0b11111101 out (0x3f), a - nop - nop + pop hl ; nop, and matches with push in a, (0xdc) ; bit 3:0 are our dest bits 7:4 rlca \ rlca \ rlca \ rlca @@ -59,8 +57,7 @@ smskbdFetchKCB: ; Port B TH output, low ld a, 0b01110111 out (0x3f), a - nop - nop + push hl ; nop, matches with pop later in a, (0xdc) ; bit 7:6 are our dest bits 1:0 rlca \ rlca @@ -75,8 +72,7 @@ smskbdFetchKCB: ; Port B TH output, high ld a, 0b11110111 out (0x3f), a - nop - nop + pop hl ; nop, matches earlier push in a, (0xdc) ; bit 7:6 are our dest bits 5:4 rrca \ rrca