By using Beetbug, I found one of the reasons I use more RS than needed. It's because Funktal does not have even rudimentary tail call optimisation. Next thing to fix ^_^
The immediate modes don't use absolute addresses tho, they are written in memory as a relative short. So if you plan on doing it this way, you'll have to get the offset. Not that it would be too difficult or anything, but just thought I'd mention it.
How's that? Say I have a function @f1 and I say !f1, does that do the equivalent of JMP? The code I generated,where I replace f1 JMP2r by !f1 , seems to work ok.
OK, I understand that bit. But I don't understand why I would need to get the offsets at compile time to do the tail call optimisation. Is it not correct to do label JMP2r => !label ?
OK, I see. So that information should be enough to link a label to an address. What would be needed for linking would be to add a fixed offset to all absolute addresses in a rom.
Sorry, I didn't provide enough context. Suppose you have an tal program and you call a function that is not defined in the source code, but you have a .rom and .rom.sym for it. From the .rom.sym you can get the address for the label, but that will in general not work because you need to combine the roms for both. So you'd need to apply some offset to the rom so that its content fits after the content of your source file. For that you'd need to know at which address your source ends.
Devine Lu Linvega
Unknown parent • • •WimⓂ️
in reply to Devine Lu Linvega • • •Devine Lu Linvega
in reply to WimⓂ️ • • •WimⓂ️
in reply to Devine Lu Linvega • • •Devine Lu Linvega
in reply to WimⓂ️ • • •WimⓂ️
in reply to Devine Lu Linvega • • •Devine Lu Linvega
in reply to WimⓂ️ • • •JMI label is PC += label
The short value of the label in the screenshot is 0x0118, the short value of the jsi is 0x0011
WimⓂ️
in reply to Devine Lu Linvega • • •label JMP2r => !label ?
Devine Lu Linvega
in reply to WimⓂ️ • • •WimⓂ️
in reply to Devine Lu Linvega • • •Devine Lu Linvega
in reply to WimⓂ️ • • •aaah, then yes, nothing to worry about there then.
I'm not sure if you've seen @bellinitte's padding mod to #uxntal (https://merveilles.town/@bellinitte/110141437531968122) but you miiight be able to make use of this somehow.
charlie
2023-04-04 16:16:02
WimⓂ️
in reply to Devine Lu Linvega • • •WimⓂ️
in reply to Devine Lu Linvega • • •Devine Lu Linvega
in reply to WimⓂ️ • • •WimⓂ️
in reply to Devine Lu Linvega • • •Devine Lu Linvega
in reply to WimⓂ️ • • •XXIIVV — symbols
wiki.xxiivv.comWimⓂ️
in reply to Devine Lu Linvega • • •Devine Lu Linvega
in reply to WimⓂ️ • • •WimⓂ️
in reply to Devine Lu Linvega • • •Devine Lu Linvega
in reply to WimⓂ️ • • •