SHENZHEN I/O

SHENZHEN I/O

Not enough ratings
RAM CHIPSET
   
Award
Favorite
Favorited
Unfavorite
File Size
Posted
Updated
8.821 KB
28 Mar @ 11:07am
3 Apr @ 7:26am
2 Change Notes ( view )

Subscribe to download
RAM CHIPSET

Description
5 Comments
JohnDiGriz  [author] 2 May @ 4:46am 
@zwlpple thank you!

i actually originally intended to have additional input and output for GPU bus to simulate N64 architecture, but was unable to actually solve that version, so had to simplify it ahah
zwippie 30 Apr @ 12:31pm 
Thank you for the challenge, it required some clever routing. Lovely! :)

Solved in 23 / 366 / 47
Kalle 3 Apr @ 9:14am 
Thanks, now it works.
JohnDiGriz  [author] 3 Apr @ 7:27am 
@Kalle Thanks for noticing! Fixed it
Kalle 30 Mar @ 6:13am 
There is a bug in the code, when cleaning the RAM, there is no offset of 1!
for j = value[2], value[3] do
memory[j] = 0
end
should be
for j = value[2], value[3] do
memory[j+1] = 0
end