mirror of https://github.com/pret/pokecrystal.git
better formatting for romstr imports
This commit is contained in:
parent
5eb81b07f3
commit
8f4b5dae2a
|
@ -1,8 +1,17 @@
|
||||||
import sys, os, time, datetime, json
|
import sys
|
||||||
from gbz80disasm import opt_table
|
import os
|
||||||
|
import time
|
||||||
|
import datetime
|
||||||
|
import json
|
||||||
from ctypes import c_int8
|
from ctypes import c_int8
|
||||||
from copy import copy
|
from copy import copy
|
||||||
from labels import get_label_from_line, get_address_from_line_comment
|
|
||||||
|
from gbz80disasm import opt_table
|
||||||
|
|
||||||
|
from labels import (
|
||||||
|
get_label_from_line,
|
||||||
|
get_address_from_line_comment,
|
||||||
|
)
|
||||||
|
|
||||||
relative_jumps = [0x38, 0x30, 0x20, 0x28, 0x18, 0xc3, 0xda, 0xc2, 0x32]
|
relative_jumps = [0x38, 0x30, 0x20, 0x28, 0x18, 0xc3, 0xda, 0xc2, 0x32]
|
||||||
relative_unconditional_jumps = [0xc3, 0x18]
|
relative_unconditional_jumps = [0xc3, 0x18]
|
||||||
|
|
Loading…
Reference in New Issue