aboutsummaryrefslogtreecommitdiff
path: root/src/peripherals/eeprom.ts (follow)
Commit message (Collapse)AuthorAgeFilesLines
* chore(deps): upgrade prettierUri Shaked2025-02-111-1/+1
| | | | reformat all code with the new prettier version
* fix(eeprom): EEPROM interrupt not firing #110Uri Shaked2021-10-241-2/+6
| | | | fix #110
* feat(usart): implement RX #11Uri Shaked2021-02-191-0/+1
| | | | close #11
* perf!: centeral timekeepingUri Shaked2020-12-091-12/+10
| | | | | | | | | This should improve performance, especially when running simulations with multiple peripherals. For instance, the demo project now runs at ~322%, up from ~185% in AVR8js 0.13.1. BREAKING CHANGE: `tick()` methods were removed from individual peripherals. You now need to call `cpu.tick()` instead.
* refactor: central interrupt handling #38Uri Shaked2020-12-091-8/+18
|
* fix(eeprom): EEPROM write fails after first attemptUri Shaked2020-07-161-1/+1
| | | | close #54
* feat(eeprom): implement EEPROM peripheralUri Shaked2020-07-161-0/+147
close #15