feat: FASM target

This commit is contained in:
2025-08-22 20:51:25 -04:00
parent 8fb97ffa8f
commit a38010ec62
7 changed files with 108 additions and 60 deletions

View File

@@ -22,20 +22,9 @@ typedef struct {
bool linenoise;
} libmap_t;
typedef enum {
MIT,
GPL,
BSD,
UNL,
} licence_t;
typedef enum { MIT, GPL, BSD, UNL, _LICENCE_COUNT_ } licence_t;
typedef enum {
POSIX,
SIMPLE,
GNU,
LIBRARY,
FASM,
} style_t;
typedef enum { POSIX, SIMPLE, GNU, LIBRARY, FASM, _STYLE_COUNT_ } style_t;
typedef struct {
libmap_t libraries;