asmodeus 0.1.0

Complete assembler and emulator for Asmodeus architecture
use crate::ascii_art::{print_asmodeus_logo_full, print_command, print_info};

pub fn print_help() {
    print_asmodeus_logo_full();
    
    println!("Usage: asmod <COMMAND> [OPTIONS] <INPUT_FILE>");
    println!("       asmod [OPTIONS] <INPUT_FILE>  (defaults to run)");
    println!();
    
    println!("COMMANDS:");
    print_command("run", "Run the assembly program (default)");
    print_command("assemble", "Assemble to binary without running");
    print_command("disassemble", "Disassemble binary file");
    print_command("debug", "Interactive debugger with breakpoints");
    print_command("interactive", "Real-time character I/O mode");
    print_command("live", "Alias for interactive mode");
    print_command("examples", "Manage and run example programs"); 
    print_command("new", "Create new project from template");
    print_command("check", "Check syntax without assembling");
    print_command("format", "Format source code for readability");
    println!();
    
    println!("OPTIONS:");
    print_command("-o, --output", "Specify output file");
    print_command("-v, --verbose", "Verbose output");
    print_command("--debug", "Debug output");
    print_command("-e, --extended", "Enable extended instruction set");
    print_command("-w, --watch", "Watch file for changes and auto-rerun");
    print_command("-h, --help", "Show this help message");
    println!();
    
    println!("EXAMPLES:");
    print_command("asmod program.asmod", "# Run (default command)");
    print_command("asmod run program.asmod", "# Run assembly program");
    print_command("asmod run --debug program.asmod", "# Run with debug output");
    print_command("asmod run --extended program.asmod", "# Run with extended instruction set");
    print_command("asmod run --watch program.asmod", "# Watch file and auto-rerun on changes");
    print_command("asmod debug program.asmod", "# Interactive debugger");
    print_command("asmod interactive char_io.asmod", "# Real-time character I/O");
    print_command("asmod assemble program.asmod", "# Assemble to binary");
    print_command("asmod disassemble program.bin", "# Disassemble binary");
    print_command("asmod examples list", "# List all available examples");
    print_command("asmod examples run hello", "# Run hello example");
    print_command("asmod new hello", "# Create new hello world project");
    print_command("asmod new calc --template calc", "# Create calculator from template");
    print_command("asmod check program.asmod", "# Quick syntax check");
    print_command("asmod format program.asmod", "# Format assembly code");
    print_command("asmod format -o clean.asmod program.asmod", "# Format to specific output file");
    println!();
    
    println!("SUPPORTED FILE EXTENSIONS:");
    print_info(".asmod    Asmodeus assembly source files");
    print_info(".bin      Binary machine code files (with valid Asmodeus syntax)");
    println!();
}