Browse Source

add license and copyright to CLI tools source files

pull/7/head
Murad 2 years ago
parent
commit
40438dc21c
Signed by: foxpy GPG Key ID: 78BE32418B0C8450
  1. 3
      toyasm/src/main.rs
  2. 3
      toyvm/src/main.rs

3
toyasm/src/main.rs

@ -1,3 +1,6 @@
// SPDX-License-Identifier: MIT
// Copyright Murad Karammaev, Nikita Kuzmin
use clap::Parser;
use std::{
error::Error,

3
toyvm/src/main.rs

@ -1,3 +1,6 @@
// SPDX-License-Identifier: MIT
// Copyright Murad Karammaev, Nikita Kuzmin
use clap::Parser;
use std::{error::Error, fs::File, io::Read, path::PathBuf};
use toy_cpu_4bit::cpu::Cpu;

Loading…
Cancel
Save