diff options
| author | Uri Shaked | 2020-03-22 21:12:03 +0200 |
|---|---|---|
| committer | GitHub | 2020-03-22 21:12:03 +0200 |
| commit | b3dc0329a8a7bfb8350ddc71719d4348dd4ed66c (patch) | |
| tree | e85d52944ce76ac604e276f25859a26d38a0afd0 /src/peripherals/twi.spec.ts | |
| parent | Merge pull request #25 from LironHazan/AVR8JS-24-editor-user-history (diff) | |
| parent | refactor: added peripherals and cpu feature folders (diff) | |
| download | avr8js-b3dc0329a8a7bfb8350ddc71719d4348dd4ed66c.tar.gz avr8js-b3dc0329a8a7bfb8350ddc71719d4348dd4ed66c.tar.bz2 avr8js-b3dc0329a8a7bfb8350ddc71719d4348dd4ed66c.zip | |
Merge pull request #22 from LironHazan/AVR8JS-21-restructure-project
refactor: add peripherals and cpu feature folders
Diffstat (limited to '')
| -rw-r--r-- | src/peripherals/twi.spec.ts (renamed from src/twi.spec.ts) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/twi.spec.ts b/src/peripherals/twi.spec.ts index 369f22a..542cf2a 100644 --- a/src/twi.spec.ts +++ b/src/peripherals/twi.spec.ts @@ -1,7 +1,7 @@ -import { CPU } from './cpu'; +import { CPU } from '../cpu/cpu'; import { AVRTWI, twiConfig } from './twi'; -import { assemble } from './utils/assembler'; -import { avrInstruction } from './instruction'; +import { assemble } from '../utils/assembler'; +import { avrInstruction } from '../cpu/instruction'; const FREQ_16MHZ = 16e6; |
