diff options
| author | Uri Shaked | 2025-02-11 11:01:48 +0200 |
|---|---|---|
| committer | Uri Shaked | 2025-02-11 11:01:48 +0200 |
| commit | 1378808fa3befb80582e1836705e472755505b73 (patch) | |
| tree | cdc39d81d7958a6f155bcf0fd02e903d64bf9e08 /src/cpu/instruction.spec.ts | |
| parent | test(timer): fix typo #160 (diff) | |
| download | avr8js-1378808fa3befb80582e1836705e472755505b73.tar.gz avr8js-1378808fa3befb80582e1836705e472755505b73.tar.bz2 avr8js-1378808fa3befb80582e1836705e472755505b73.zip | |
docs: add copyright notice to source code
Diffstat (limited to '')
| -rw-r--r-- | src/cpu/instruction.spec.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/cpu/instruction.spec.ts b/src/cpu/instruction.spec.ts index cf3e547..aa01876 100644 --- a/src/cpu/instruction.spec.ts +++ b/src/cpu/instruction.spec.ts @@ -1,7 +1,10 @@ +// SPDX-License-Identifier: MIT +// Copyright (c) Uri Shaked and contributors + import { CPU } from './cpu'; import { avrInstruction } from './instruction'; import { assemble } from '../utils/assembler'; -import { describe, it, expect, vi } from 'vitest'; +import { describe, it, expect, vi, beforeEach } from 'vitest'; const r0 = 0; const r1 = 1; |
