Fixed doc for fsplc and fsplmod

This commit is contained in:
Sasha Koshka 2024-02-23 03:20:51 -05:00
parent 14b36bba1a
commit c93f3916a1
2 changed files with 15 additions and 7 deletions

View File

@ -4,12 +4,12 @@
// output formats. Currently it supports native object files, native ASM, and
// LLVM IR code.
//
// Usage: fsplc [OPTION]... ADDRESS
// Usage: fsplc [OPTION]... ADDRESS
//
// -h, --help Display usage information and exit
// --debug Print extra debug information while compiling
// -q, --quiet Don't print warnings, errors, etc.
// -m, --format Output format (.s, .o, .ll)
// -o, --output Output filename
// -O, --optimization Optimization level (0-3)
// -h, --help Display usage information and exit
// --debug Print extra debug information while compiling
// -q, --quiet Don't print warnings, errors, etc.
// -m, --format Output format (.s, .o, .ll)
// -o, --output Output filename
// -O, --optimization Optimization level (0-3)
package main

View File

@ -1,2 +1,10 @@
// fsplmod manages FSPL modules.
// Usage: fsplmod [COMMAND] [OPTION]...
//
// -h, --help Display usage information and exit
//
// Commands:
//
// bump Re-generate the UUID of a module
// new Create a new module in the specified directory
package main