summaryrefslogtreecommitdiff
path: root/tnslc/tnslc.tnsl
blob: 2df15a3e9793e50a47266679c7646efcc4ac7606 (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
:import "utils/utils.tnsl"
:import "parse/parse.tnsl"
:import "compile/compile.tnsl"

~uint8 DEFAULT_FOUT = "out.asm\0"

~uint8 USAGE = "
TNSLC v0.6.0 (C) 2024 CircleShift (MPL 2.0)

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

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

~uint8 char_str = "%c\0"
~uint8 newline = "\n\0"

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

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

	parse.Node n = parse.generate_ast(~fin)
	parse.print_ast(~n)
	n.end()

	fin.end()
	fout.end()

	return 0
;/