tuxDB - linux gaming aggregate
TUXDB - LINUX GAMING AGGREGATE
 NEWS TOP_PLAYED GAMES ITCH.IO CALENDAR CHAT WINE SteamDeck
 STREAMERS CREATORS CROWDFUNDING DEALS WEBSITES ABOUT
 PODCASTS REDDIT 

 

SUPPORT TUXDB ON KO-FI

MENU

ON SALE

New Twitch streamer aggregation implemented (#FuckTwitch) due to Twitch's API issues (more info on my Discord )


https://whiteshampoo.itch.io/code53


EPILEPSY WARNING:
This game contains some bright and flashing parts!

This game is my entry for the Godot Wild Jam #53
It was made in less than 9 days and may contain some bugs ;)

The project-folder is attached, and here is the git-repo
(Please use Godot 4 beta 13)

In this game you have to program temperature controllers in a pseudo-assembly programming language.

An explanation of the instructions is included in the game.

There are sample solutions in the user folder if you get stuck.

There is not one correct solution for each level. Any code that does the job is correct.

If you think you wrote a good solution/code, please leave your code in the comments!

Here is a very short example:

SETA 42  # Set register A to 42
LOOP:   # Label for JMP and CALL
  INB 0   # Store value of input 0 in register B
  ADD B   # Add value of register B to register A
  OUTA 0   # Set output 0 to value of register A 
  JMP LOOP   # Jump to LOOP