bus-02-memory/projects/bus/bus-02-memory/mmem_fifo.c
2026-05-31 23:50:47 +02:00

33 lines
No EOL
797 B
C

#include "mmem_fifo.h"
/**
* \brief Initializes the list with the page frames
*
* \return Returns a pointer to the created memory struct
*/
memory* stud_fifo_init_list(){
return 0;
}
/**
* \brief maps a page to a page frame
*
* \param mem - the memory struct in which the page should be mapped in
* \param virtual_address - the virtual address of the page
*/
void stud_fifo_map_page(memory* mem, uint64_t virtual_address){
return;
}
/**
* \brief function is called, when a page is accessed
* The page that is accessed may or may not be in a page frame
*
* \param virtual_address - the virtual address of the page
* \param mem - the memory struct in which the page should be accessed
*/
void stud_fifo_access_page(memory* mem, uint64_t virtual_address){
return;
}