summaryrefslogtreecommitdiff
path: root/profile/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'profile/README.md')
-rw-r--r--profile/README.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/profile/README.md b/profile/README.md
new file mode 100644
index 0000000..bb2445b
--- /dev/null
+++ b/profile/README.md
@@ -0,0 +1,23 @@
+# Divina
+
+A modern build system for assembly
+
+```lua
+-- Divina.lua
+
+Package = {
+ name = "example",
+ version = "0.1.0",
+ description = "A default Divina package that you can extend!",
+ compile_options = {},
+ minimum_divina_version = Divina.version,
+ sources = {
+ "example/Main.asm",
+ },
+ type = Divina.Type.Bin,
+ arch = Divina.Arch.x64,
+ license = "Unlicense",
+}
+
+return Package
+```