mirror of
https://github.com/chhylp123/hifiasm.git
synced 2026-09-15 12:47:57 +08:00
27 lines
303 B
C++
27 lines
303 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;
|
|
|
|
init_kseq(read_file_name);
|
|
|
|
|
|
|
|
Counting();
|
|
|
|
|
|
|
|
destory_kseq();
|
|
|
|
|
|
return 1;
|
|
}
|