aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2022-10-13 18:37:43 +0200
committerBad Diode <bd@badd10de.dev>2022-10-13 18:37:43 +0200
commitfc3a2ea8357cfc9933ff8c91438a4d5eca3bfff9 (patch)
tree8ebeea56b26b42b49f7947eb18c54dd0ca349e4f
parent96e8dff73af09b5e9542e924ef4881fe01e436bf (diff)
downloaduxnfb-main.tar.gz
uxnfb-main.zip
Add LICENSE and README filesHEADmain
-rw-r--r--LICENSE21
-rw-r--r--README.md15
2 files changed, 36 insertions, 0 deletions
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..cd3a5bb
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
1MIT License
2
3Copyright (c) Bad Diode
4
5Permission is hereby granted, free of charge, to any person obtaining a copy
6of this software and associated documentation files (the "Software"), to deal
7in the Software without restriction, including without limitation the rights
8to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9copies of the Software, and to permit persons to whom the Software is
10furnished to do so, subject to the following conditions:
11
12The above copyright notice and this permission notice shall be included in all
13copies or substantial portions of the Software.
14
15THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21SOFTWARE.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..38ae8d0
--- /dev/null
+++ b/README.md
@@ -0,0 +1,15 @@
1# UXNFB
2
3This is a port of the [UXN virtual machine][uxn] for Linux with zero
4dependencies. It renders the graphics using the linux framebuffer and input
5devices.
6
7[uxn]: https://wiki.xxiivv.com/site/uxn.html
8
9## Configuration
10
11The path for the input devices must be passed at compile time.
12
13```
14make MOUSE_PATH=/dev/input/mouse0 KBD_PATH=/dev/input/event20
15```