summaryrefslogtreecommitdiff
path: root/tnslc/tnslc.tnsl
blob: 0123430ad029e78f6028fe74f3e16c7ba95b747a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
:import "c_wrap_linux.tnsl"

:import "utils/utils.tnsl"
:import "compile/compile.tnsl"

~uint8 DEFAULT_FOUT = "out.asm\0"

~uint8 USAGE = "
TNSLC v0.5.0 (C) 2024 CircleShift

usage:
	tnslc (file in) [file out]
	
\0"

~uint8 FOPEN_ERR = "Error opening file\n\0"

~uint8 char_str = "%c\0"
~uint8 newline = "\n\0"
~uint8 scratch = "asd,efg\0"
~uint8 test = "asd\0"

/; main (int argc, ~~uint8 argv) [int]
	asm "mov r10, rdi"
	asm "mov r11, rsi"

	/; if (argc < 2)
		_printf(USAGE)
		return 1
	;/
	
	/; if (compile._in_csv(scratch, test))
		_printf(test)
		_printf(newline)
	;/

	utils.File fin, fout
	fin.init(argv{1})
	
	/; if (argc > 2)
		fout.init(argv{2})
	;; else
		fout.init(DEFAULT_FOUT)
	;/

	compile.generate(fin, fout)

	fin.end()
	fout.end()

	return 0
;/