mirror of
https://github.com/mnaberez/py65.git
synced 2024-11-18 15:06:35 +00:00
note the definition of 65Org16 and point to github implementaion
This commit is contained in:
parent
7e48fade90
commit
4b453e3b7a
@ -1,6 +1,15 @@
|
||||
from py65.devices import mpu6502
|
||||
from py65.utils.devices import make_instruction_decorator
|
||||
|
||||
# The 65Org16 is a derivative of the 6502 architecture
|
||||
# - with 32-bit address space (by using 16-bit bytes)
|
||||
# - with no specific support for 8-bit bytes
|
||||
# - with BCD mode not supported
|
||||
# - and otherwise all opcodes and addressing modes are like the NMOS 6502
|
||||
# - sign bit is bit 15, overflow bit is bit 14
|
||||
#
|
||||
# One implementation can be found here: https://github.com/BigEd/verilog-6502/wiki
|
||||
|
||||
class MPU(mpu6502.MPU):
|
||||
|
||||
def __init__(self, byteWidth=16, addrWidth=32, addrFmt="%08x", byteFmt="%04x", *args, **kwargs):
|
||||
|
Loading…
Reference in New Issue
Block a user