-
-
Couldn't load subscription status.
- Fork 42
Description
Is there any possibility of implementing dynamic loading of SLD files?
The idea behind this is when using dynamically loaded code (I’m on the ZX Next platform) in much the same way that CSpect implements “DebugOut” using RST with the ability to output formatted text with realtime values.
rst 0x18
db 0xff
dw amazingLoadedModule
…
amazingLoadedModule:
dz “./amazingmodule.sld”
This way I can load the overlay from the main control program and then just before I call it dynamically loaded the SLD so that once I step in, I then have source level debugging inside VS code, my loader function could always try to load the SLD for the requested overlay (at least when debug options are enabled at the time the code was assembled)
Thanks