aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* fix(instruction): LD, ST instructions should take 2 clock cyclesUri Shaked2020-04-282-20/+33
| | | | close #39
* chore: release 0.8.1Uri Shaked2020-04-272-2/+2
|
* chore(ci): add node 14, remove node 8Uri Shaked2020-04-272-2/+2
|
* style: reformat code with prettier 2.xUri Shaked2020-04-2712-39/+39
| | | | prettier rules have changed since we upgraded to 2.x
* chore(deps): prettier 2.0Uri Shaked2020-04-273-13/+14
| | | | | | also update: - eslint-config-prettier - eslint-plugin-prettier
* fix(timer): Timer value should not increment on the same cycle as TCNTn writeUri Shaked2020-04-272-2/+48
| | | | close #36
* fix(benchmark): update to work with latest codeUri Shaked2020-04-162-13/+17
|
* chore: release 0.8.0Uri Shaked2020-04-162-2/+2
|
* Merge pull request #30 from wokwi/16bit-timer-fixUri Shaked2020-04-163-27/+198
|\ | | | | Implement 16-bit timers
| * test(timer): add more 16-bit timer testsUri Shaked2020-04-122-13/+56
| | | | | | | | also fix some issues found by @gfeun and the tests
| * feat(timer): implement 16-bit timersUri Shaked2020-04-122-24/+148
| | | | | | | | e.g. Timer/Counter1 on ATmega328
| * feat(demo): add 16-bit timer (timer1)Uri Shaked2020-04-121-3/+7
|/
* chore(deps): jest 25.3.0, ts-jest 25.3.1Uri Shaked2020-04-112-817/+3977
|
* chore(deps): npm audit fixUri Shaked2020-04-111-143/+77
|
* doc: add Contributing GuideUri Shaked2020-04-112-1/+86
| | | | close #23
* chore: release 0.7.0Uri Shaked2020-04-102-2/+2
|
* feat(instruction): 22-bit PC support #31Uri Shaked2020-04-094-20/+120
| | | | adapt CALL, ICALL, RCALL, RET, and RETI for MCUs with 22-bit PC
* style(demo): formatting, lint issueUri Shaked2020-04-091-4/+10
|
* feat(instruction): implement EICALL, EIJMP #31Uri Shaked2020-04-092-0/+38
|
* feat(instruction): implement ELPM #31Uri Shaked2020-04-082-0/+71
|
* feat(demo): make editor widerUri Shaked2020-04-021-3/+3
|
* chore: release 0.6.2Uri Shaked2020-04-022-2/+2
|
* fix: GPIO port listeners not invoked when writing to DDR registersUri Shaked2020-04-022-3/+17
| | | | close #28
* test(instruction): use assembly in testsUri Shaked2020-04-021-89/+91
| | | | | | | | | | | | Refactored the tests to use AVR assembly instead of hardcoded bytecode. This change should make the tests much easier to read and maintain. Before: loadProgram('659a'); Now: loadProgram('SBI 0x0c, 5');
* feat(demo): add LED labelsUri Shaked2020-04-021-2/+2
|
* chore(demo): upgrade monaco editor to 0.20.0Uri Shaked2020-04-022-2/+2
|
* chore: gitignore .historyUri Shaked2020-04-021-1/+2
|
* doc: add npm version badge to readmeUri Shaked2020-03-251-0/+1
|
* Merge pull request #22 from LironHazan/AVR8JS-21-restructure-projectUri Shaked2020-03-2216-27/+27
|\ | | | | refactor: add peripherals and cpu feature folders
| * refactor: added peripherals and cpu feature folderslironh2020-03-2217-27/+28
| |
* | Merge pull request #25 from LironHazan/AVR8JS-24-editor-user-historyUri Shaked2020-03-224-1/+42
|\ \ | |/ |/| feat(demo): saving user history
| * feat(demo): saving user historylironh2020-03-223-5/+8
| |
| * feat(demo): saving user historylironh2020-03-214-1/+39
|/
* Merge pull request #19 from gfeun/main-execute-loop-optimizationUri Shaked2020-03-203-16/+103
|\ | | | | Improve main cpu loop performance
| * perf(demo): improve main cpu loop performancegfeun2020-03-203-16/+103
|/
* test: use tsconfig.spec.json when running jestUri Shaked2020-03-202-1/+10
| | | | | Also configure tests to fix "Emit skipped" errors in demo project tests, and surpress a warning about esModuleInterop
* style(cpu): relocate some stray commentsUri Shaked2020-03-181-4/+4
|
* chore: release 0.6.1Uri Shaked2020-03-182-2/+2
|
* perf(cpu): Optimize opcode checkUri Shaked2020-03-181-373/+187
|\ | | | | Merge #17
| * Move first comment inside functiongfeun2020-03-181-1/+1
| |
| * Optimize opcode checkgfeun2020-03-181-372/+186
|/
* fix(benchmark): tsconfigUri Shaked2020-03-171-1/+2
|
* fix(demo): switch to hexi.wokwi.com build serverUri Shaked2020-03-161-1/+1
|
* Merge pull request #14 from wokwi/dependabot/npm_and_yarn/acorn-7.1.1Uri Shaked2020-03-142-4/+4
|\ | | | | chore(deps-dev): bump acorn from 7.1.0 to 7.1.1
| * chore(deps-dev): bump acorn from 7.1.0 to 7.1.1dependabot[bot]2020-03-142-4/+4
|/ | | | | | | Bumps [acorn](https://github.com/acornjs/acorn) from 7.1.0 to 7.1.1. - [Release notes](https://github.com/acornjs/acorn/releases) - [Commits](https://github.com/acornjs/acorn/compare/7.1.0...7.1.1) Signed-off-by: dependabot[bot] <support@github.com>
* chore: add vscode extensions.jsonUri Shaked2020-03-131-0/+12
| | | | this prompts to install some recommended vscode extensions when the project is opened
* fix(demo): browser freezes on edge caseUri Shaked2020-02-111-1/+4
|
* perf(demo): build for es2018Uri Shaked2020-02-042-1/+5
| | | | transpilation to es5 adds a significant overhead, slowing down runtime.
* chore: release 0.6.0Uri Shaked2020-02-032-2/+2
|
* feat(twi): proper interrupt support #10Uri Shaked2020-02-032-5/+20
|