aboutsummaryrefslogtreecommitdiff
path: root/paging.h
diff options
context:
space:
mode:
authorvetch <vetch97@gmail.com>2020-01-04 19:37:32 +0100
committervetch <vetch97@gmail.com>2020-01-04 19:37:32 +0100
commit615e3302c9dd358bb64cd56d1f3814ad8d5df84d (patch)
tree07b0469807eb3bff7ff7d3f3576858642bc66675 /paging.h
parent885a097da42317f48cead2d91c0e0240066943a8 (diff)
downloadrpi-MMU-example-615e3302c9dd358bb64cd56d1f3814ad8d5df84d.tar.gz
rpi-MMU-example-615e3302c9dd358bb64cd56d1f3814ad8d5df84d.zip
rearranged files, updated makefile
Diffstat (limited to 'paging.h')
-rw-r--r--paging.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/paging.h b/paging.h
deleted file mode 100644
index 4ac8efa..0000000
--- a/paging.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifndef PAGING_H
-#define PAGING_H
-
-void setup_flat_map(void);
-
-void setup_pager_structures(uint32_t available_mem);
-
-#define SECTION_NULL 0xffff
-
-// returns section number or SECTION_NULL in case of failure
-uint16_t claim_and_map_section
-(void *owner, uint16_t where_to_map, uint8_t access_permissions);
-
-#endif // PAGING_H