mirror of
https://github.com/KrisKennaway/ii-vision.git
synced 2025-07-10 03:23:55 +00:00
Fix imports and point to player debug symbols
This commit is contained in:
@ -1,8 +1,10 @@
|
||||
import enum
|
||||
import numpy as np
|
||||
from typing import Iterator, Tuple
|
||||
|
||||
from transcoder import screen, symbol_table
|
||||
import numpy as np
|
||||
|
||||
import screen
|
||||
import symbol_table
|
||||
|
||||
|
||||
class CycleCounter:
|
||||
@ -159,7 +161,7 @@ def _ParseSymbolTable():
|
||||
|
||||
opcode_data = {}
|
||||
for name, data in symbol_table.SymbolTable(
|
||||
"audiotest/audiotest/audiotest.dbg").parse().items():
|
||||
"player/iivision.dbg").parse().items():
|
||||
if name.startswith("\"op_"):
|
||||
op_name = name[4:-1]
|
||||
start_addr = int(data["val"], 16)
|
||||
|
Reference in New Issue
Block a user