Skip to content

Commit

Permalink
RAM
Browse files Browse the repository at this point in the history
  • Loading branch information
MitchellShibilski-Unkel committed May 6, 2024
1 parent c21fb58 commit 60a7577
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/Munix.cpp
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
#include "PyMunix.c"
#include "window/window.h"
#include "PyMunix.h"
#include "RAM.h"


class Munix() {
class Munix {
public:
void runTerminal() {
terminal();
}
}

void freeRAM(int* bytes) {
Free(bytes);
}
};
6 changes: 6 additions & 0 deletions src/RAM.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#include <stdlib.h>


void Free(int* ptr) {
free(ptr);
}

0 comments on commit 60a7577

Please sign in to comment.