fxconv: add synonyms Structure=ObjectData and ptr=ref

This commit is contained in:
Lephenixnoir 2021-08-25 18:00:43 +02:00
parent 0fc48f3c4d
commit bc7cd928f4
Signed by: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
1 changed files with 4 additions and 0 deletions

View File

@ -169,6 +169,8 @@ def ref(base, offset=None, padding=None):
raise FxconvError(f"invalid type {type(base)} for ref()")
ptr = ref
def sym(name):
return Sym("_" + name)
@ -228,6 +230,8 @@ class ObjectData:
assembly += f".long {name} + {offset}\n"
return assembly
Structure = ObjectData
#
# Area specifications
#