summaryrefslogtreecommitdiff
path: root/memory.cpp
diff options
context:
space:
mode:
authorFox Caminiti <fox@foxcam.net>2022-08-01 20:03:12 -0400
committerFox Caminiti <fox@foxcam.net>2022-08-01 20:04:43 -0400
commitb26f27d9e3fd44ec5775accdc3666a339684be4c (patch)
treee5c7b8b48f5597904190529f90d71a8526ca9800 /memory.cpp
parent7d3dcee5b370c05065eb409ad5c21d0bc64790b1 (diff)
large changes to bitmap structure
Diffstat (limited to 'memory.cpp')
-rw-r--r--memory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/memory.cpp b/memory.cpp
index 73d1fb4..6aebdc3 100644
--- a/memory.cpp
+++ b/memory.cpp
@@ -1,4 +1,4 @@
-internal void
+static void
InitMemoryTable(global_memory *GlobalMemory, memory *Memory, uint64 Size, memory_table_list TableName, char *Name) {
memory_table *Table = &Memory->Slot[TableName];
Table->Name = Name;
@@ -7,7 +7,7 @@ InitMemoryTable(global_memory *GlobalMemory, memory *Memory, uint64 Size, memory
GlobalMemory->CurrentPosition += Size;
}
-internal void*
+static void*
AllocateMemory(memory *Memory, uint64 Size, memory_table_list TableName) {
void *Address;
memory_table *Table = &Memory->Slot[TableName];