working proof-of-concept file read fom disk

This commit is contained in:
minjaesong
2020-10-28 23:07:12 +09:00
parent 664a4ca758
commit 29584b7070
8 changed files with 161 additions and 82 deletions

View File

@@ -85,9 +85,12 @@ Description: opens the file for writing
Description: opens the file for appending (a variant of write)
WRITE
WRITE<bytes to write>
Description: puts the device into WRITE mode. Any subsequent bytes will be interpreted as-is for writing
Description: puts the device into WRITE mode and sets internal counter. Any subsequent messages will be interpreted
as-is, get written directly to the file, and will decrement the internal counter accordingly.
The number of bytes are required because of a nature of block-transfer, where every message is always in
the length of the block size.
FLUSH