summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-09-28 13:26:06 -0700
committerGitHub <[email protected]>2022-09-28 13:26:06 -0700
commitff243712bae42614c798155b592fdcf7893eefa0 (patch)
tree56cfbd3e9ee46a62743ea7799bbc60be741b876f /README.md
parentdocs(README.md): example (diff)
downloadarchived-github-ff243712bae42614c798155b592fdcf7893eefa0.tar.xz
archived-github-ff243712bae42614c798155b592fdcf7893eefa0.zip
fix(README.md): move to profile directoryHEADmain
Diffstat (limited to 'README.md')
-rw-r--r--README.md23
1 files changed, 0 insertions, 23 deletions
diff --git a/README.md b/README.md
deleted file mode 100644
index bb2445b..0000000
--- a/README.md
+++ /dev/null
@@ -1,23 +0,0 @@
-# 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
-```