aboutsummaryrefslogtreecommitdiff
path: root/src/index.ts
diff options
context:
space:
mode:
authorUri Shaked2019-11-19 14:35:39 +0200
committerUri Shaked2019-11-19 14:35:39 +0200
commita47e21cf3f5c2968eb2afd0ae9cd1453d0011ed8 (patch)
treece8a9be31e6898f3dc456dd1e49a8c8558b1b519 /src/index.ts
parentInitial commit - project skeleton (diff)
downloadavr8js-a47e21cf3f5c2968eb2afd0ae9cd1453d0011ed8.tar.gz
avr8js-a47e21cf3f5c2968eb2afd0ae9cd1453d0011ed8.tar.bz2
avr8js-a47e21cf3f5c2968eb2afd0ae9cd1453d0011ed8.zip
feat: implement some AVR instructions + tests
Diffstat (limited to '')
-rw-r--r--src/index.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/index.ts b/src/index.ts
index ad1d380..038ff16 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -1 +1,2 @@
-export const x = 1;
+export { CPU, ICPU, ICPUMemoryHook, ICPUMemoryHooks } from './cpu';
+export { avrInstruction } from './instruction';