mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 23:04:08 +10:00
9 lines
136 B
C
9 lines
136 B
C
#include <stdlib.h>
|
|
|
|
#include "disassembler.h"
|
|
|
|
int main(int argc, const char* argv[]) {
|
|
disassemble(argv[1]);
|
|
return EXIT_SUCCESS;
|
|
}
|