Skip to content
This repository has been archived by the owner on Jun 8, 2019. It is now read-only.

Commit

Permalink
Fix some text formatting issues
Browse files Browse the repository at this point in the history
Signed-off-by: nkeck720 <noahkeck72@gmail.com>
  • Loading branch information
devfonks committed Nov 27, 2016
1 parent 8af3775 commit c40c79f
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions text.asm
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
; This is an example of data file formatting. There is no beginning of file signature, however
; the end of file signature is signified by a 0xFF.
db "This is a text file stored under the NOS file system."
db "This file is for use with testing the 'type' command. It is also very"
db "convenient for testing the file system's ability to track stored files."
db "This is a text file stored under the NOS file system.", 0Dh, 0Ah
db "This file is for use with testing the 'type' command. It is also very "
db "convenient for testing the file system's ability to track stored files."
; There should always be a newline at the end of text files
db 0Dh, 0Ah

db 0FFh
db 0FFh
;--------------------------------
;Keep the thing in one sector
times 512-($-$$) db 0

0 comments on commit c40c79f

Please sign in to comment.