Added port support, and removed things from BASIC_DEVELOPMENT it does not yet support
This commit is contained in:
@@ -1,7 +1,20 @@
|
||||
; IN:
|
||||
; DX = port address
|
||||
; AL = byte
|
||||
port_byte_out:
|
||||
pusha
|
||||
out dx,al
|
||||
popa
|
||||
ret
|
||||
; -----------------------------------------
|
||||
; IN:
|
||||
; DX = port address
|
||||
; OUT:
|
||||
; AL = byte from port
|
||||
port_byte_in:
|
||||
in al, dx
|
||||
ret
|
||||
|
||||
port_serial_enable:
|
||||
ret
|
||||
port_send_via_serial:
|
||||
|
||||
Reference in New Issue
Block a user