Fixed Interrupts bug:

It was a problem about ports(cpu/ports.asm) functions.
This commit is contained in:
ice-bit
2019-07-06 00:32:41 +02:00
parent 3a0d674985
commit ba9feaba18
8 changed files with 26 additions and 9 deletions

View File

@@ -10,7 +10,7 @@ global outb ; Output from port
global inb ; Input to port
outb:
mov al, [esp + 3]
mov al, [esp + 8]
mov dx, [esp + 4]
out dx, al
ret