Work in Progress

Circuits

7

Jonnywhateva 2019-12-04 16:05

Mostly working logic circuit simulator. Drag the screen around, tap to add components. Has an issue where inverters trigger left to right, so a signal that should disable it coming from the right will not. Also would be nice to add a save function using the persistent memory, which I haven't played around with much yet. Also the capacitor isn't really finished. Was going to make it charge when powered and then power around it until drained when not.

Circuit.nx | Open in app
2019-12-04 16:05

was8bit 2019-12-04 18:34 (Edited)

Superb!!! :)


was8bit 2019-12-04 18:41 (Edited)

PERSIST MEMORY will hold exactly 2 background screens of 20x16 each... which is 2x320 or 640 cells

You are using one full background of 32x32 which is 1024 cells, which is more than PERSIST can hold....


was8bit 2019-12-04 18:45

I use PERSIST here to save both 20x16 backgrounds...

https://lowresnx.inutilis.com/topic.php?id=597

The top layer you see the characters... the bottom layer hold secret data which is the status of the item (character) above it ;)

this way, items and their status get saved, the backgrounds hold all my "data", i dont store anything in variables at all ;)


Tinycloud778 2019-12-04 21:00

Cool


Timo 2019-12-04 22:27

There are many ways to make data to persist more compact, for example you could probably put the character and the palette numbers into one byte.


Jonnywhateva 2019-12-05 04:29

Thank you, I'll have to keep that in mind


DJMoffinz 2019-12-05 21:54

Nice!


Log in to reply.