From 2ed275821676a0d5baea6c7fd843d71c72c2342c Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Mon, 9 Sep 2024 12:41:49 -0400 Subject: initial mips32 (r2000ish mips32r6) assembler --- include/merror.h | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 include/merror.h (limited to 'include/merror.h') diff --git a/include/merror.h b/include/merror.h new file mode 100644 index 0000000..727111d --- /dev/null +++ b/include/merror.h @@ -0,0 +1,37 @@ +/* Copyright (c) 2024 Freya Murphy */ +#ifndef __MERROR_H__ +#define __MERROR_H__ + +/* Error codes + */ +#define M_SUCCESS 0 +#define M_EOF 1 +#define M_ERROR -1 + +#define __DEBUG 1 +#define __WARNING 2 +#define __ERROR 3 + +__attribute__((format(printf, 4, 5))) +void __log_impl_pos(int line, int column, int type, const char *format, ...); +void __log_impl(int type, const char *format, ...); + +#define DEBUG(format, ...) \ + __log_impl(__DEBUG, format, ##__VA_ARGS__) + +#define WARNING(format, ...) \ + __log_impl(__WARNING, format, ##__VA_ARGS__) + +#define ERROR(format, ...) \ + __log_impl(__ERROR, format, ##__VA_ARGS__) + +#define DEBUG_POS(pos, format, ...) \ + __log_impl_pos(pos.y, pos.x, __DEBUG, format, ##__VA_ARGS__) + +#define WARNING_POS(pos, format, ...) \ + __log_impl_pos(pos.y, pos.x, __WARNING, format, ##__VA_ARGS__) + +#define ERROR_POS(pos, format, ...) \ + __log_impl_pos(pos.y, pos.x, __ERROR, format, ##__VA_ARGS__) + +#endif /* __MERROR_H__ */ -- cgit v1.2.3-freya