mirror of
https://github.com/chhylp123/hifiasm.git
synced 2026-09-15 12:47:57 +08:00
14 lines
255 B
C
14 lines
255 B
C
#ifndef __ASSEMBLY__
|
|
#define __ASSEMBLY__
|
|
#include "CommandLines.h"
|
|
|
|
#define FORWARD 0
|
|
#define REVERSE_COMPLEMENT (0x8000000000000000)
|
|
|
|
#define Get_Cigar_Type(RECORD) (RECORD&3)
|
|
#define Get_Cigar_Length(RECORD) (RECORD>>2)
|
|
|
|
int ha_assemble(void);
|
|
|
|
#endif
|