Moved the PMM away from being object orientated as it is just plain annoying renamed src folder to source Set timeout to 5 seconds in the grub config
		
			
				
	
	
		
			19 lines
		
	
	
		
			253 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			253 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once 
 | |
| #include <stdint.h>
 | |
| #include "../../io.h"
 | |
| #define PIT_DATA_0 0x40
 | |
| #define PIT_DATA_1 0x41
 | |
| #define PIT_DATA_2 0x42
 | |
| #define PIT_COMMAND 0x43
 | |
| 
 | |
| 
 | |
| extern uint32_t pit_tick;
 | |
| 
 | |
| 
 | |
| void pit_initialise();
 | |
| 
 | |
| 
 | |
| void get_pit_count();
 | |
| 
 | |
| void set_pit_count();
 |