aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/instruction.spec.ts
diff options
context:
space:
mode:
authorUri Shaked2026-02-14 19:25:24 +0200
committerUri Shaked2026-02-14 19:25:24 +0200
commit69589b07e47219b7673dc9919fb6fa3fcd0c4d54 (patch)
tree50d34ab39b382c50695682ddd3ea5bfc7043ea8e /src/cpu/instruction.spec.ts
parentchore: update all devDependencies (diff)
downloadavr8js-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.ts4
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;