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