Skip to content

Commit 1378808

Browse files
committed
docs: add copyright notice to source code
1 parent 00a691f commit 1378808

36 files changed

+105
-8
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2019-2023 Uri Shaked
3+
Copyright (c) 2019-2025 Uri Shaked
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,4 @@ For more information, please check the [Contributing Guide](CONTRIBUTING.md).
9191

9292
## License
9393

94-
Copyright (C) 2019-2023 Uri Shaked. The code is released under the terms of the MIT license.
94+
Copyright (C) 2019-2025 Uri Shaked. The code is released under the terms of the MIT license.

demo/src/compile.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-License-Identifier: MIT
2+
// Copyright (c) Uri Shaked and contributors
3+
14
const url = 'https://hexi.wokwi.com';
25

36
export interface HexiResult {

demo/src/cpu-performance.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-License-Identifier: MIT
2+
// Copyright (c) Uri Shaked and contributors
3+
14
import { CPU } from 'avr8js';
25

36
export class CPUPerformance {

demo/src/execute.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-License-Identifier: MIT
2+
// Copyright (c) Uri Shaked and contributors
3+
14
import {
25
avrInstruction,
36
AVRTimer,

demo/src/format-time.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-License-Identifier: MIT
2+
// Copyright (c) Uri Shaked and contributors
3+
14
function zeroPad(value: number, length: number) {
25
let sval = value.toString();
36
while (sval.length < length) {

demo/src/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-License-Identifier: MIT
2+
// Copyright (c) Uri Shaked and contributors
3+
14
import '@wokwi/elements';
25
import { LEDElement } from '@wokwi/elements';
36
import { PinState } from 'avr8js';

demo/src/intelhex.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-License-Identifier: MIT
2+
// Copyright (c) Uri Shaked and contributors
3+
14
/**
25
* Minimal Intel HEX loader
36
* Part of AVR8js

demo/src/task-scheduler.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-License-Identifier: MIT
2+
// Copyright (c) Uri Shaked and contributors
3+
14
export type IMicroTaskCallback = () => void;
25

36
export class MicroTaskScheduler {

src/cpu/cpu.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-License-Identifier: MIT
2+
// Copyright (c) Uri Shaked and contributors
3+
14
/**
25
* AVR 8 CPU data structures
36
* Part of AVR8js

0 commit comments

Comments
 (0)