mirror of
https://github.com/chhylp123/hifiasm.git
synced 2026-09-15 12:47:57 +08:00
29 lines
384 B
C++
29 lines
384 B
C++
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "CommandLines.h"
|
|
#include "Process_Read.h"
|
|
#include "Assembly.h"
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
|
|
if (!CommandLine_process(argc, argv))
|
|
return 1;
|
|
|
|
|
|
if (!initiReadAllReads(read_file_name))
|
|
{
|
|
fprintf(stdout, "Cannot open read files. \n");
|
|
return 1;
|
|
}
|
|
|
|
|
|
Counting();
|
|
|
|
|
|
|
|
|
|
return 1;
|
|
}
|