diff options
Diffstat (limited to 'tnslc')
-rw-r--r-- | tnslc/README.md | 2 | ||||
-rw-r--r-- | tnslc/ast/ast.tnsl | 2 | ||||
-rw-r--r-- | tnslc/ast/block.tnsl | 2 | ||||
-rw-r--r-- | tnslc/ast/list.tnsl | 2 | ||||
-rw-r--r-- | tnslc/ast/statement.tnsl | 2 | ||||
-rw-r--r-- | tnslc/ast/tree.tnsl | 2 | ||||
-rw-r--r-- | tnslc/ast/value.tnsl | 2 | ||||
-rw-r--r-- | tnslc/compile/compile.tnsl | 2 | ||||
-rw-r--r-- | tnslc/compile/isa_x86.tnsl | 2 | ||||
-rw-r--r-- | tnslc/dummy.S | 8 | ||||
-rw-r--r-- | tnslc/flags/defaults.tnsl | 2 | ||||
-rw-r--r-- | tnslc/flags/flags.tnsl | 2 | ||||
-rw-r--r-- | tnslc/parse/parse.tnsl | 2 | ||||
-rw-r--r-- | tnslc/parse/token.tnsl | 2 | ||||
-rw-r--r-- | tnslc/parse/tokenizer.tnsl | 2 | ||||
-rw-r--r-- | tnslc/tnslc.tnsl | 2 | ||||
-rw-r--r-- | tnslc/util.tnsl | 2 |
17 files changed, 24 insertions, 16 deletions
diff --git a/tnslc/README.md b/tnslc/README.md index fa19eb6..937fdce 100644 --- a/tnslc/README.md +++ b/tnslc/README.md @@ -12,7 +12,7 @@ Examples: ### Credits - Copyright 2021 Kyle Gunger + Copyright 2021-2022 Kyle Gunger This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. diff --git a/tnslc/ast/ast.tnsl b/tnslc/ast/ast.tnsl index 6e75da6..71470f6 100644 --- a/tnslc/ast/ast.tnsl +++ b/tnslc/ast/ast.tnsl @@ -1,5 +1,5 @@ /## - Copyright 2021 Kyle Gunger + Copyright 2021-2022 Kyle Gunger This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. diff --git a/tnslc/ast/block.tnsl b/tnslc/ast/block.tnsl index 17a9e22..8fa0f27 100644 --- a/tnslc/ast/block.tnsl +++ b/tnslc/ast/block.tnsl @@ -1,5 +1,5 @@ /## - Copyright 2021 Kyle Gunger + Copyright 2021-2022 Kyle Gunger This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. diff --git a/tnslc/ast/list.tnsl b/tnslc/ast/list.tnsl index da6a682..b65b336 100644 --- a/tnslc/ast/list.tnsl +++ b/tnslc/ast/list.tnsl @@ -1,5 +1,5 @@ /## - Copyright 2021 Kyle Gunger + Copyright 2021-2022 Kyle Gunger This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. diff --git a/tnslc/ast/statement.tnsl b/tnslc/ast/statement.tnsl index 6023de2..15f6e26 100644 --- a/tnslc/ast/statement.tnsl +++ b/tnslc/ast/statement.tnsl @@ -1,5 +1,5 @@ /## - Copyright 2021 Kyle Gunger + Copyright 2021-2022 Kyle Gunger This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. diff --git a/tnslc/ast/tree.tnsl b/tnslc/ast/tree.tnsl index db901de..0e8f9dc 100644 --- a/tnslc/ast/tree.tnsl +++ b/tnslc/ast/tree.tnsl @@ -1,5 +1,5 @@ /## - Copyright 2021 Kyle Gunger + Copyright 2021-2022 Kyle Gunger This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. diff --git a/tnslc/ast/value.tnsl b/tnslc/ast/value.tnsl index d4cef56..59655c7 100644 --- a/tnslc/ast/value.tnsl +++ b/tnslc/ast/value.tnsl @@ -1,5 +1,5 @@ /## - Copyright 2021 Kyle Gunger + Copyright 2021-2022 Kyle Gunger This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. diff --git a/tnslc/compile/compile.tnsl b/tnslc/compile/compile.tnsl index a178d25..eb43594 100644 --- a/tnslc/compile/compile.tnsl +++ b/tnslc/compile/compile.tnsl @@ -1,5 +1,5 @@ /## - Copyright 2021 Kyle Gunger + Copyright 2021-2022 Kyle Gunger This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. diff --git a/tnslc/compile/isa_x86.tnsl b/tnslc/compile/isa_x86.tnsl index a5d9b0a..664108f 100644 --- a/tnslc/compile/isa_x86.tnsl +++ b/tnslc/compile/isa_x86.tnsl @@ -1,5 +1,5 @@ /## - Copyright 2021 Kyle Gunger + Copyright 2021-2022 Kyle Gunger This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. diff --git a/tnslc/dummy.S b/tnslc/dummy.S new file mode 100644 index 0000000..5c0d094 --- /dev/null +++ b/tnslc/dummy.S @@ -0,0 +1,8 @@ +.global _start + +.text +_start: + ret + +.data + diff --git a/tnslc/flags/defaults.tnsl b/tnslc/flags/defaults.tnsl index 2164e20..b1d4e13 100644 --- a/tnslc/flags/defaults.tnsl +++ b/tnslc/flags/defaults.tnsl @@ -1,5 +1,5 @@ /## - Copyright 2021 Kyle Gunger + Copyright 2021-2022 Kyle Gunger This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. diff --git a/tnslc/flags/flags.tnsl b/tnslc/flags/flags.tnsl index 1dbbaf4..26192a3 100644 --- a/tnslc/flags/flags.tnsl +++ b/tnslc/flags/flags.tnsl @@ -1,5 +1,5 @@ /## - Copyright 2021 Kyle Gunger + Copyright 2021-2022 Kyle Gunger This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. diff --git a/tnslc/parse/parse.tnsl b/tnslc/parse/parse.tnsl index dbd9354..5fb1a18 100644 --- a/tnslc/parse/parse.tnsl +++ b/tnslc/parse/parse.tnsl @@ -1,5 +1,5 @@ /## - Copyright 2021 Kyle Gunger + Copyright 2021-2022 Kyle Gunger This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. diff --git a/tnslc/parse/token.tnsl b/tnslc/parse/token.tnsl index bf4d470..43a2e80 100644 --- a/tnslc/parse/token.tnsl +++ b/tnslc/parse/token.tnsl @@ -1,5 +1,5 @@ /# - Copyright 2021 Kyle Gunger + Copyright 2021-2022 Kyle Gunger This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. diff --git a/tnslc/parse/tokenizer.tnsl b/tnslc/parse/tokenizer.tnsl index 9021369..30ccd4b 100644 --- a/tnslc/parse/tokenizer.tnsl +++ b/tnslc/parse/tokenizer.tnsl @@ -1,5 +1,5 @@ /# - Copyright 2021 Kyle Gunger + Copyright 2021-2022 Kyle Gunger This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. diff --git a/tnslc/tnslc.tnsl b/tnslc/tnslc.tnsl index 76a10a3..7aad7b5 100644 --- a/tnslc/tnslc.tnsl +++ b/tnslc/tnslc.tnsl @@ -1,5 +1,5 @@ /## - Copyright 2021 Kyle Gunger + Copyright 2021-2022 Kyle Gunger This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. diff --git a/tnslc/util.tnsl b/tnslc/util.tnsl index 27f9f89..3badb8b 100644 --- a/tnslc/util.tnsl +++ b/tnslc/util.tnsl @@ -1,5 +1,5 @@ /## - Copyright 2021 Kyle Gunger + Copyright 2021-2022 Kyle Gunger This file is licensed under the CDDL 1.0 (the License) and may only be used in accordance with the License. |