m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/harddoomdev.h
diff options
context:
space:
mode:
authorMarcin Chrzanowski <marcin.j.chrzanowski@gmail.com>2018-05-23 00:12:48 +0200
committerMarcin Chrzanowski <marcin.j.chrzanowski@gmail.com>2018-05-23 00:18:49 +0200
commit340435b03e9d73597833e922a736fd7ed61d58ff (patch)
tree2726b1b9e34748750b8e1a6bc3efb206bbbf58b3 /harddoomdev.h
parent54b150fc32374921cb583d129c439b5704744dc4 (diff)
Implement draw_line command
Diffstat (limited to 'harddoomdev.h')
-rw-r--r--harddoomdev.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/harddoomdev.h b/harddoomdev.h
index da8dfe1..a2c997a 100644
--- a/harddoomdev.h
+++ b/harddoomdev.h
@@ -3,7 +3,16 @@
#include <linux/pci.h>
+#include "doomdev.h"
+#include "private_data.h"
+
void start_dev(struct pci_dev *dev);
void shutdown_dev(struct pci_dev *dev);
+uint32_t get_interrupts(void __iomem *iomem);
+void deactivate_intr(void __iomem *iomem, uint32_t intr);
+void ping_sync(void __iomem *iomem);
+
+void draw_line(struct surface_data *surface_data, struct doomdev_line line);
+
#endif