From 0f2629f97e93fb90951ba8887109aaf58e6b13c9 Mon Sep 17 00:00:00 2001 From: Chris Curl Date: Mon, 28 Aug 2023 09:11:48 -0400 Subject: [PATCH] Update README.md (#25) --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 361b6c9..b70115b 100644 --- a/README.md +++ b/README.md @@ -197,12 +197,12 @@ An example usage of temporary words: ### Opcodes for PCs (Windows and Linux) |Opcode|Name|Stack|Description| | :-- | :-- | :-- | :-- | -| 58 | SYSTEM | (A--) | Call system(a)| -| 59 | FOPEN | (N M--H) | N: FileName, M: OpenMode (R/W/A), H: Handle| -| 60 | FCLOSE | (H--) | Close file with handle H| -| 61 | FREAD | (A N H--) | Read N bytes from file H to address A| -| 62 | FWRITE | (A N H--) | Write N bytes to file H to address A| -| 63 | FLOAD | (A--) | Load from file A| +| 58 | SYSTEM | (A--) Call system(a)| +| 59 | FOPEN | (N M--H) | N: FileName, M: OpenMode (R/W/A), H: Handle| +| 60 | FCLOSE | (H--) | Close file with handle H| +| 61 | FREAD | (A N H--R) | Read N bytes from file H to address A, R: num-read| +| 62 | FWRITE | (A N H--) | Write N bytes to file H to address A| +| 63 | FLOAD | (A--) | Load from file A| ### Opcodes for Development Boards |Opcode|Name|Stack|Description|