added numberjack blackjack game

This commit is contained in:
Luxferre
2025-04-30 09:31:12 +03:00
parent 8122ca07dd
commit acd18af182
3 changed files with 287 additions and 3 deletions
+4 -3
View File
@@ -273,12 +273,13 @@ namely:
* [A simple 10-character echo test](examples/echo.mu8a) (requires both I/O
port 1 and port 2 support),
* [Bulls and Cows game](examples/moo.mu8a),
* [Lunar Lander game](examples/lunar.mu8a).
* [Lunar Lander game](examples/lunar.mu8a),
* [NumberJack](examples/numjack.mu8a) port of a Blackjack game, utilizing some
advanced techniques (see the comments in the beginning on how to play it).
You can assemble them using any of the reference assemblers provided within the
repository, or even by hand (by numbering lines, resolving the labels and
replacing mnemonics with corresponding opcodes). The "Hellorld!" example only
works on the platforms supporting I/O port 1 (character output).
replacing mnemonics with corresponding opcodes).
If you just want to test an implementation, assembled MU8 machine code files
(in the plaintext format) are stored in the `examples/assembled` subdirectory.