Rather than load a picture from file to screen, does anyone know how to load this into a ASM routine as DATA and copy it to the screen ?
I can do this in basic,but it takes 8 seconds to poke a single pixel line to screen :(
Re: Storing screen data in ASM code ?
Posted: 16 Apr 2020 15:47
by thorsten.otto
Most assemblers have an INCBIN directive or similar. With this, you can include any binary file into the executable. From there, just copy it to screen.
Alternatively, you can write a simple tool that spits out "dc.b" directives, and include that.