1

allow vector to be lazy init if alloc not avail

This commit is contained in:
2022-07-24 02:22:43 +02:00
parent a0fd7ea1a4
commit b0b6ec13dc
6 changed files with 54 additions and 41 deletions

View File

@ -46,6 +46,8 @@ int main() {
// Speicherverwaltung initialisieren
allocator.init();
scheduler.init();
kevman.init();
// Tastatur-Unterbrechungsroutine 'einstoepseln'
kb.plugin();
@ -124,6 +126,7 @@ int main() {
// DONE: Move Array/ArrayList/LinkedList/List to bse namespace
// DONE: Remove the Input.h file and replace functionality with kevman
// TODO: Replace C style casts with C++ casts
// TODO: Add Move/Copy/Assignment stuff to vector, array etc (all where it's missing)
// Scheduler doesn't return
return 0;