From ff243712bae42614c798155b592fdcf7893eefa0 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 28 Sep 2022 13:26:06 -0700 Subject: fix(README.md): move to profile directory --- profile/README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 profile/README.md (limited to 'profile') 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 +``` -- cgit v1.2.3