Skip to content

Commit e08cbd2

Browse files
authored
Merge pull request #273 from boriel/doc/updates
Doc/updates
2 parents b404bf0 + 9c63ac2 commit e08cbd2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/load.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ That is, it saves all the program state. You can also use `LOAD`/`VERIFY` with t
3434
* The save command should save bytes in a format that is 100% Sinclair BASIC Compatible
3535
* For `LOAD` and `VERIFY`, when a R-Tape Loading error occurs, the program will not stop.
3636
You have to check PEEK 23610 (ERR_NR) for value 26. If that value exists, then the `LOAD`/`VERIFY` operation failed.
37-
* At this moment, `LOAD`/`SAVE`/`VERIFY` can be interrupted by the user by pressing BREAK/Space,
38-
which exits the program and returns to the ROM BASIC. This may be changed in the future to behave like
39-
the previous point (signaling the break in `ERR_NR` and returning).
37+
* `LOAD`/`SAVE`/`VERIFY` can be interrupted by the user by pressing BREAK/Space,
38+
which cancels the operation (signaling the break in `ERR_NR` and returning). If you want `LOAD`/`SAVE`/`VERIFY` to be
39+
interrupted and exit also your program (returning to the ROM Basic), compile with `--enable-break` flag.
4040
* When using `LOAD "xxx" DATA...` you won't see the message
4141
_"Number array:"_ or _"Char array:"_, but _"Bytes:"_ instead.
4242
This is because ZX BASIC always uses bytes (`LOAD`/`SAVE ... CODE`) for storing user variables

0 commit comments

Comments
 (0)