FreeCalypso > hg > freecalypso-reveng
view blobstat/main.c @ 304:a46e191a980e
dsample-fw-disasm: Tx up/down functions located and analysed
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Sun, 06 Oct 2019 01:29:35 +0000 |
| parents | ff2a6433687f |
| children |
line wrap: on
line source
#include <stdio.h> #include <stdlib.h> main(argc, argv) char **argv; { if (argc != 3) { fprintf(stderr, "usage: %s class-file map-file\n", argv[0]); exit(1); } read_class_file(argv[1]); process_map_file(argv[2]); print_output(); exit(0); }
