Commit graph

5 commits

Author SHA1 Message Date
steve
0bf65a80f9 o headless
- sketched in command line argument parsing
2020-01-05 18:58:26 +00:00
steve
aead7e032d o registers
- reorganised register implementation
  - existing implementation now call rbits
  - added an implementation called r16bits, using uint16 intead of a
    bit array
  - only implemented Load(), Add() and the To*() methods
  - just enough to speed up programme counter operations
  - now sends a reference to InstructionResult over the result channel,
    rather than a copy

o cpu
  - adjusted register declarations to match changes in registers
    implementation

o mflib
  - consolidated assert() function into one package

o debugger
  - sketched in debugger
2020-01-05 18:58:25 +00:00
steve
72864b5cfd o cpu
- we now start one goroutine at cpu intialisaton and not one for each
    instruction
  - caching of all 8 bit and 16 bit patterns so we don't have to
    generate them every time
  - improved FPS between 70% to 100%
2020-01-05 18:58:25 +00:00
steve
dd4786c0f3 o debugger
- added basic input loop
  - primitive but effective FPS test
    - added cpu profiler generator

o vcs
  - cartridge attachment working properly
  - now read reset address when machine is reset

o cpu
  - fixed branching
    - backward jumps weren't working
    - cycle count sometimes wrong
  - fixed cycle counts for pre-index and post-index addressing

o
2020-01-05 18:58:25 +00:00
steve
9ad4aad566 o memory
- refinements
  - added white-box testing

o cpu
  - moved cpu definitions into its own package
  - no longer requires csv file at run time
    - csv parser moved into a code generator, embedding the data into
    the code
  - needs refinement
2020-01-05 18:58:25 +00:00