diff options
| author | Uri Shaked | 2019-11-19 14:35:39 +0200 |
|---|---|---|
| committer | Uri Shaked | 2019-11-19 14:35:39 +0200 |
| commit | a47e21cf3f5c2968eb2afd0ae9cd1453d0011ed8 (patch) | |
| tree | ce8a9be31e6898f3dc456dd1e49a8c8558b1b519 /src/index.ts | |
| parent | Initial commit - project skeleton (diff) | |
| download | avr8js-a47e21cf3f5c2968eb2afd0ae9cd1453d0011ed8.tar.gz avr8js-a47e21cf3f5c2968eb2afd0ae9cd1453d0011ed8.tar.bz2 avr8js-a47e21cf3f5c2968eb2afd0ae9cd1453d0011ed8.zip | |
feat: implement some AVR instructions + tests
Diffstat (limited to '')
| -rw-r--r-- | src/index.ts | 3 |
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'; |
