just learned you can index with ecx, updated assembly accordingly

This commit is contained in:
Benji Dial 2019-12-26 16:24:32 -05:00
parent e0e08a12d4
commit dc6b746faa

View file

@ -22,18 +22,14 @@ send_byte:;void send_byte(uint8_t value, uint8_t port)
push ebp
mov ebp, esp
mov cl, byte [ebp + 8] ;value
xor edx, edx
mov dl, byte [ebp + 12];port
xor ecx, ecx
mov cl, byte [ebp + 12];port
test dl, 0xfc
test cl, 0xfc
jnz .leave
xchg ebx, edx
shl bl, 1
mov ax, word [ebx + com_ports]
mov ebx, edx
mov dx, ax
shl cl, 1
mov dx, word [ecx + com_ports]
or dx, 5
@ -44,7 +40,7 @@ send_byte:;void send_byte(uint8_t value, uint8_t port)
and dx, 0xfff8
mov al, cl
mov al, byte [ebp + 8];value
out dx, al
.leave:
@ -57,17 +53,14 @@ read_byte:;uint8_t read_byte(uint8_t port)
xor eax, eax
xor edx, edx
mov dl, byte [ebp + 8];port
xor ecx, ecx
mov cl, byte [ebp + 8];port
test dl, 0xfc
test cl, 0xfc
jnz .leave
xchg ebx, edx
shl bl, 1
mov cx, word [ebx + com_ports]
mov ebx, edx
mov dx, cx
shl cl, 1
mov dx, word [ecx + com_ports]
or dx, 5