aboutsummaryrefslogtreecommitdiff
path: root/src/utils/assembler.spec.ts
diff options
context:
space:
mode:
authorUri Shaked2020-12-27 00:05:54 +0200
committerUri Shaked2020-12-27 00:05:54 +0200
commit988070a92d4654a40a0bf55a9b3ff5c0b7e1ae5e (patch)
tree07e6c0467ea0f47e31d69afa9e8e6e2377791dbc /src/utils/assembler.spec.ts
parent0.14.7 (diff)
downloadavr8js-988070a92d4654a40a0bf55a9b3ff5c0b7e1ae5e.tar.gz
avr8js-988070a92d4654a40a0bf55a9b3ff5c0b7e1ae5e.tar.bz2
avr8js-988070a92d4654a40a0bf55a9b3ff5c0b7e1ae5e.zip
fix(timer): Output Compare in PWM modes #78
close #78
Diffstat (limited to 'src/utils/assembler.spec.ts')
-rw-r--r--src/utils/assembler.spec.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/utils/assembler.spec.ts b/src/utils/assembler.spec.ts
index f0daf64..836f388 100644
--- a/src/utils/assembler.spec.ts
+++ b/src/utils/assembler.spec.ts
@@ -14,6 +14,7 @@ describe('AVR assembler', () => {
bytes: bytes('0b0d'),
errors: [],
lines: [{ byteOffset: 0, bytes: '0d0b', line: 1, text: 'ADD r16, r11' }],
+ labels: {},
});
});
@@ -36,6 +37,7 @@ describe('AVR assembler', () => {
bytes: new Uint8Array(0),
errors: [],
lines: [],
+ labels: {},
});
});
@@ -44,6 +46,7 @@ describe('AVR assembler', () => {
bytes: new Uint8Array(0),
errors: ['Line 0: Rd out of range: 16<>31'],
lines: [],
+ labels: {},
});
});