Skip to content

Commit 193d76a

Browse files
committed
updated r40 release notes
1 parent 417b4a6 commit 193d76a

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -239,14 +239,13 @@ On Windows, you can use the [OSFMount](https://www.osforensics.com/tools/mount-d
239239
Host Filesystem Interface
240240
-------------------------
241241

242-
If the system ROM contains any version of the KERNAL, and there is no SD card image attached, the LOAD (`$FFD5`) and SAVE (`$FFD8`) KERNAL calls (and BASIC statements) are intercepted by the emulator for device 8 (the default). So the BASIC statements will target the host computer's local filesystem:
242+
If the system ROM contains any version of the KERNAL, and there is no SD card image attached, all accesses to the ("IEEE") Commodore Bus are intercepted by the emulator for device 8 (the default). So the BASIC statements will target the host computer's local filesystem:
243243

244-
LOAD"$
244+
DOS"$
245245
LOAD"FOO.PRG
246246
LOAD"IMAGE.PRG",8,1
247247
SAVE"BAR.PRG
248-
249-
Note that this feature is very limited! Manually reading and writing files (e.g. `OPEN` in BASIC) is not supported by the host filesystem interface. Use SD card images for this.
248+
OPEN2,8,2,"FOO,S,R"
250249

251250
The emulator will interpret filenames relative to the directory it was started in. On macOS, when double-clicking the executable, this is the home directory.
252251

@@ -340,8 +339,10 @@ Release Notes
340339
* added Host FS bridging using IEEE API
341340
* added Serial Bus emulation [experimental]
342341
* added WAV file recording [Stephen Horn]
342+
* possible to disable Ctrl/Cmd key interception ($9FB7) [mooinglemur]
343343
* Other
344344
* Fixed I2C (RTC, SMC)
345+
* Fixed RAM/ROM bank for PC when entering break [mjallison42]
345346
* LST support for -trace
346347

347348
## Release 39 ("Buenos Aires")

package/package.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set -e
99

1010
##############################
1111
export PRERELEASE_VERSION=40
12-
PRE=_pre1
12+
PRE=_rc2
1313
##############################
1414

1515

@@ -93,4 +93,4 @@ for i in x16emu_mac x16emu_linux x16emu_win; do
9393
mv $i.zip $i-r$PRERELEASE_VERSION$PRE.zip
9494
done
9595

96-
open .
96+
open .

0 commit comments

Comments
 (0)