From 69589b07e47219b7673dc9919fb6fa3fcd0c4d54 Mon Sep 17 00:00:00 2001 From: Uri Shaked Date: Sat, 14 Feb 2026 19:25:24 +0200 Subject: style: organize imports Also remove unused eslint-disable directives --- src/cpu/instruction.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cpu/instruction.spec.ts') 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; -- cgit v1.2.3