| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
| |
This makes the test code easier to follow
|
| |
|
|
|
| |
The Compare Match Output bits are used to generate hardware PWM signals on selected MCU pins. This is also the mechanism used by Arduino's analogWrite() method.
See #32 for more details
|
| |
|
|
| |
close #40
|
| |
|
|
|
|
| |
According to the datasheet, the value of the high byte of the counter for 16-bit timers (such as timer 1) is only updated when the low byte is being read/written.
close #37
|
| |
|
|
| |
close #39
|
| |
|
|
| |
adapt CALL, ICALL, RCALL, RET, and RETI for MCUs with 22-bit PC
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
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');
|
| |
|