Найти тему
Репост
1 год назад
Игра для vcOS
; ------------------------------------------------------------------ ; hangman.asm vcOS NASM ;https://www.youtube.com/channel/UCEZI4ZzVDWTg_ytg0iKYFGA BITS 16 %INCLUDE "vcdev.inc" ORG 32768 start: call os_hide_cursor ; First, reset values in case user is playing multiple games mov di, real_string ; Full city name mov al, 0 mov cx, 50 rep stosb mov di, work_string ; String that starts as '_' characters mov al, 0 mov cx, 50 rep stosb mov di, tried_chars ; Chars the user has tried, but aren't in the real string mov al, 0 mov cx, 255 rep stosb mov byte [tried_chars_pos],...
2 года назад