Skip to content

Commit

Permalink
updated r40 release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
mist64 committed Apr 27, 2022
1 parent 417b4a6 commit 193d76a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -239,14 +239,13 @@ On Windows, you can use the [OSFMount](https://www.osforensics.com/tools/mount-d
Host Filesystem Interface
-------------------------

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:
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:

LOAD"$
DOS"$
LOAD"FOO.PRG
LOAD"IMAGE.PRG",8,1
SAVE"BAR.PRG

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.
OPEN2,8,2,"FOO,S,R"

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.

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

## Release 39 ("Buenos Aires")
Expand Down
4 changes: 2 additions & 2 deletions package/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set -e

##############################
export PRERELEASE_VERSION=40
PRE=_pre1
PRE=_rc2
##############################


Expand Down Expand Up @@ -93,4 +93,4 @@ for i in x16emu_mac x16emu_linux x16emu_win; do
mv $i.zip $i-r$PRERELEASE_VERSION$PRE.zip
done

open .
open .

0 comments on commit 193d76a

Please sign in to comment.