[feat] init

This commit is contained in:
2024-02-29 11:55:14 +05:30
commit d1b0f03779
7 changed files with 484 additions and 0 deletions

8
src/args.rs Normal file
View File

@@ -0,0 +1,8 @@
use clap::Parser;
#[derive(Parser,Debug,Clone)]
#[command(version,about,author)]
pub struct Chip8ProgramArgs{
#[arg(short,long,help = "Filename of ROM to load.")]
pub filename:Option<String>
}