You can support the development on the Github Sponsors page.


WIP > WRITE A THROUGH RAM BUG


using peek4 to half write RAM happens.
made by masternama
uploaded by masternama
added:
download cartridge
- CLICK TO PLAY -

1


What happens go to left side position player sprite can cause write the 64k RAM with text?

Answer:

Used peek4 API for Read a half byte value from RAM. Add the print() (text). Go to left position (player).
After changed through writed a RAM can cause memory copied through screen.

(C) 2019 Master Nama

Comments


raydeejay

This is ridiculous useless

StinkerB06

You're reading the value of a certain pixel on the screen. Keep in mind that 4-bit nybble addresses are 8-bit byte addresses multiplied by 2.

For example, to read the low nybble of byte 0x0FF9D, use peek4(0x1FF3A). To read the high nybble, use peek4(0x1FF3B).

masternama

Ok @raydeejay @StinkerB06


Post comment