aboutsummaryrefslogtreecommitdiff
path: root/examples/just_return/Divina.lua
diff options
context:
space:
mode:
Diffstat (limited to 'examples/just_return/Divina.lua')
-rw-r--r--examples/just_return/Divina.lua21
1 files changed, 21 insertions, 0 deletions
diff --git a/examples/just_return/Divina.lua b/examples/just_return/Divina.lua
new file mode 100644
index 0000000..3bfd9ab
--- /dev/null
+++ b/examples/just_return/Divina.lua
@@ -0,0 +1,21 @@
+--- @class Package
+--- @field public name string
+--- @field public version string
+--- @field public license string
+--- @field public minimum_divina_version string
+--- @field public sources string[]
+--- @field public compiler string
+Package = {
+ name = "just_return",
+ version = "0.1.0",
+ license = "GPL-3.0-only",
+ minimum_divina_version = Divina.version,
+ sources = {
+ "Main.asm",
+ },
+ type = Divina.Type.Bin,
+ arch = Divina.Arch.x64,
+ compiler = "nasm",
+}
+
+return Package