master
serr 2025-02-15 19:49:39 +03:00
parent ed881b9c40
commit 48de284384
1 changed files with 4 additions and 1 deletions

View File

@ -56,7 +56,10 @@ start:
section '.data' data readable writeable
usage db 'This is a test echo program written in FASM, outputting to you the string you entered. Works with strings of any length!', 10, 10, 0
usage db \
'This is a test echo program written in FASM,', \
' outputting to you the string you entered.', 10, \
'Works with strings of any length!', 10, 10, 0
req db 'TEXT: ', 0
resp db 10, 'ECHO: %s', 10, 'Press any button to exit: ', 0