updated blackjack example

This commit is contained in:
Luxferre
2025-04-30 13:53:59 +03:00
parent efe4d4f467
commit 4ec68fee39
+3 -1
View File
@@ -1,4 +1,5 @@
; NumberJack: a number-only blackjack game in MU8A for the mu808 VM ; NumberJack: a number-only blackjack game in MU8A for the mu808 VM
;
; How to play: ; How to play:
; * you start with a $1000 balance ; * you start with a $1000 balance
; * on each round, enter your bet ; * on each round, enter your bet
@@ -9,9 +10,10 @@
; * on the first turn, select 0 (stand), 1 (hit) or 2 (double) ; * on the first turn, select 0 (stand), 1 (hit) or 2 (double)
; * on each next turn, select 0 (stand) or 1 (hit) ; * on each next turn, select 0 (stand) or 1 (hit)
; * as a result of the round, the dealer's final hand will be shown ; * as a result of the round, the dealer's final hand will be shown
; first and then yours ; first and then yours
; * the dealer must draw on 16 and stand on any 17 ; * the dealer must draw on 16 and stand on any 17
; * player's blackjack pays 3 to 2 ; * player's blackjack pays 3 to 2
;
; Created by Luxferre in 2025, released into public domain ; Created by Luxferre in 2025, released into public domain
; constants section ; constants section