apple2js/test
Ian Flanigan 6923d43873
Fix issue #187 (and upgrade jest) (#188)
* Update jest to v29.5.0

This updates jest to the latest version (29.5.0) and fixes everything
that the upgrade breaks.  One of the biggest differences is that the
mock types changed and I'm once again confused as to the "proper" way
to create mocks in jest.  Whatever.

* Fix issue #187 were bank writing was not working correctly

Before, `mmu.ts` would deactivate writing to the language card if
`prewrite` was reset.  However, it is totally possible to reset
`prewrite` and leave writing enabled, as shown my Sather in
_Understanding the Apple IIe_, table 5.5, p. 5-24.  For example:

```assembly_x86
    sta  $c08a  ; WRITE DISABLE; READ DISABLE
    lda  $c08b  ; PRE-WRITE set
    lda  $c08b  ; WRITE enabled
    sta  $c08a  ; PRE-WRITE reset; WRITE still enabled!
    lda  $c08b  ; PRE-WRITE set; WRITE still enabled!
```

would not work correctly because the last line would clear `_writebsr`
before setting `_prewrite`, which is incorrect.

Now, `_writebsr` is only set when `_prewrite` is set and thus only
cleared when `writeSwitch` is false.  This matches Table 5.5.

* Fix pre-write for the language card

This is the same issue as the `MMU`, namely that `langcard.ts` would
deactivate writing to the language card if `prewrite` was reset.
However, it is totally possible to reset `prewrite` and leave writing
enabled, as shown my Sather in _Understanding the Apple II_, table
5.4, p. 5-30. See the previous commit for an example.

This change also adds a test for the `LanguageCard` class.
2023-07-08 11:18:38 -07:00
..
components Add drag and drop for disks (#130) 2022-06-12 09:42:01 -07:00
env Fix issue #187 (and upgrade jest) (#188) 2023-07-08 11:18:38 -07:00
js Fix issue #187 (and upgrade jest) (#188) 2023-07-08 11:18:38 -07:00
roms Update eslint, fix issues 2021-11-28 16:20:25 -08:00
util Add the recommended eslint plugins for TypeScript (#121) 2022-05-31 08:38:40 -07:00
cpu-tom-harte.spec.ts Apply semi rule to interfaces (#109) 2022-05-10 08:04:20 -07:00
cpu.spec.ts Enforce strict equality (#115) 2022-05-18 08:19:45 -07:00
cpu6502.spec.ts No Opcode left behind (#92) 2021-12-22 10:37:05 -08:00
jest-setup.ts Preact error dialog (#120) 2022-05-31 17:41:24 -07:00