Skip to content

Commit

Permalink
Add references to the append warning from basic and kernal documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
stople committed Feb 4, 2025
1 parent 185dba9 commit 298cd7b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions X16 Reference - 04 - BASIC.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,8 @@ BSAVE "MYFILE.BIN,S,A",8,2,$A000,$B000

The above example appends a region of memory from $A000 through and including $AFFF, stopping before $B000. Running both of the above examples in succession will result in a file MYFILE.BIN 12KiB in size.

**Warning:** Appending to file involves a risk of corrupting the file system of the SD card! See [Appending to file](X16%20Reference%20-%2013%20-%20Working%20with%20CMDR-DOS.md#appending-to-file).

### BVLOAD

**TYPE: Command**
Expand Down
4 changes: 4 additions & 0 deletions X16 Reference - 05 - KERNAL.md
Original file line number Diff line number Diff line change
Expand Up @@ -526,6 +526,10 @@ For example:
`SETLFS` and `SETNAM` both need to be called prior other file comamnds, such as `OPEN` or
`SAVE`.

To append to a file, add `,?,A` to the filename. See [Appending to file](X16%20Reference%20-%2013%20-%20Working%20with%20CMDR-DOS.md#appending-to-file).

**Warning:** Appending to file involves a risk of corrupting the file system of the SD card! See [Appending to file](X16%20Reference%20-%2013%20-%20Working%20with%20CMDR-DOS.md#appending-to-file).

---

### Memory
Expand Down

0 comments on commit 298cd7b

Please sign in to comment.