diff options
| author | Uri Shaked | 2026-02-14 19:25:24 +0200 |
|---|---|---|
| committer | Uri Shaked | 2026-02-14 19:25:24 +0200 |
| commit | 69589b07e47219b7673dc9919fb6fa3fcd0c4d54 (patch) | |
| tree | 50d34ab39b382c50695682ddd3ea5bfc7043ea8e /src/cpu/instruction.spec.ts | |
| parent | chore: update all devDependencies (diff) | |
| download | avr8js-69589b07e47219b7673dc9919fb6fa3fcd0c4d54.tar.gz avr8js-69589b07e47219b7673dc9919fb6fa3fcd0c4d54.tar.bz2 avr8js-69589b07e47219b7673dc9919fb6fa3fcd0c4d54.zip | |
style: organize imports
Also remove unused eslint-disable directives
Diffstat (limited to 'src/cpu/instruction.spec.ts')
| -rw-r--r-- | src/cpu/instruction.spec.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/instruction.spec.ts b/src/cpu/instruction.spec.ts index aa01876..181b2fa 100644 --- a/src/cpu/instruction.spec.ts +++ b/src/cpu/instruction.spec.ts @@ -1,10 +1,10 @@ // SPDX-License-Identifier: MIT // Copyright (c) Uri Shaked and contributors +import { beforeEach, describe, expect, it, vi } from 'vitest'; +import { assemble } from '../utils/assembler'; import { CPU } from './cpu'; import { avrInstruction } from './instruction'; -import { assemble } from '../utils/assembler'; -import { describe, it, expect, vi, beforeEach } from 'vitest'; const r0 = 0; const r1 = 1; |
