From 48de2843847b156e887ffbe2622e3b973220fd5d Mon Sep 17 00:00:00 2001 From: serr Date: Sat, 15 Feb 2025 19:49:39 +0300 Subject: [PATCH] new --- getinput/echo.asm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/getinput/echo.asm b/getinput/echo.asm index b59c407..8ae8768 100644 --- a/getinput/echo.asm +++ b/getinput/echo.asm @@ -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