diff options
| author | Fuwn <[email protected]> | 2022-09-28 13:25:31 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-09-28 13:25:31 -0700 |
| commit | 389ef533e1a6b8efcf622a2ed09ca7239caa8c11 (patch) | |
| tree | 3d87b36b03e3119032e04b6cc743044241178af8 | |
| parent | feat: create `funding.yml` (diff) | |
| download | archived-github-389ef533e1a6b8efcf622a2ed09ca7239caa8c11.tar.xz archived-github-389ef533e1a6b8efcf622a2ed09ca7239caa8c11.zip | |
docs(README.md): example
| -rw-r--r-- | README.md | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..bb2445b --- /dev/null +++ b/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 +``` |