Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(6 edits)

(updated 05-20-21)

Hi, wanted to know if you had done anymore work to this. While this runs some of the Pico-8 library on my RG-350, it runs none of the carts I wrote. Why ? I use FLIP() and fixed loops, not _Update() or _Draw().

Currently I donated $2 as this is the amount you suggested and if you can get your Taco to run this code listed as well as the command CSTORE() which run fine in Pico-8, I sure would appreciate it and I will donate an additional $40 in support of your work.

$20 for getting FLIP() to work.

And an additional $20 for getting CSTORE() and MEMCPY() to work (it must be both) so I can load/save the sprite set at 8192-bytes which I normally use for extended saved data.

repeat
for i=0,127 do
 for j=0,127 do
  pset(j,i,rnd(16))
 end
end
flip()
until false

CSTORE() that comes with Pico-8 is not recognized as a command in your emulator. This command is vital when it comes to saving off external files. Without it you are limited to accessing only 256-bytes of remote memory per program. A serious limitation.

So even more than getting the code above to work is CSTORE().

Also Pico-8 is now at version 0.2.2c so there is a lot of catching up for you to do if you so choose !

https://www.lexaloffle.com/pico-8.php?page=manual


Hope to hear from you soon ...
--dw817