We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79b8f51 commit a6ca143Copy full SHA for a6ca143
1 file changed
arch/zx48k/translator.py
@@ -1298,8 +1298,8 @@ def visit_USR_STR(self, node):
1298
def visit_USR(self, node):
1299
""" Machine code call from basic
1300
"""
1301
- self.emit('fparam' + self.TSUFFIX(gl.PTR_TYPE), node.children[0].t)
1302
- self.emit('call', 'USR', node.type_.size)
+ self.ic_fparam(gl.PTR_TYPE, node.children[0].t)
+ self.ic_call('USR', node.type_.size)
1303
backend.REQUIRES.add('usr.asm')
1304
1305
0 commit comments