Fixed & Improved Makefile, Made V86 GPF handler not directly dereference
a null pointer - due to optimization breaking.
This commit is contained in:
3
print.h
3
print.h
@@ -1,6 +1,9 @@
|
||||
#pragma once
|
||||
#include <stdint.h>
|
||||
|
||||
__attribute((__no_caller_saved_registers__))
|
||||
void printByte(uint8_t v, uint16_t *buff);
|
||||
__attribute((__no_caller_saved_registers__))
|
||||
void printWord(uint16_t v, uint16_t *buff);
|
||||
__attribute((__no_caller_saved_registers__))
|
||||
void printDword(uint32_t v, uint16_t *buff);
|
||||
|
Reference in New Issue
Block a user