emulator improvements
This commit is contained in:
10
h8536/emulator/peripherals/__init__.py
Normal file
10
h8536/emulator/peripherals/__init__.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from .lcd import LCD_E_CLOCK_DATA, LCD_E_CLOCK_STATUS
|
||||
from .p9_bus import P9_ACK_BIT
|
||||
|
||||
__all__ = [
|
||||
"LCD_E_CLOCK_DATA",
|
||||
"LCD_E_CLOCK_STATUS",
|
||||
"P9_ACK_BIT",
|
||||
]
|
||||
5
h8536/emulator/peripherals/lcd.py
Normal file
5
h8536/emulator/peripherals/lcd.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from __future__ import annotations
|
||||
|
||||
|
||||
LCD_E_CLOCK_DATA = 0xF200
|
||||
LCD_E_CLOCK_STATUS = 0xF201
|
||||
4
h8536/emulator/peripherals/p9_bus.py
Normal file
4
h8536/emulator/peripherals/p9_bus.py
Normal file
@@ -0,0 +1,4 @@
|
||||
from __future__ import annotations
|
||||
|
||||
|
||||
P9_ACK_BIT = 0x80
|
||||
Reference in New Issue
Block a user