summaryrefslogtreecommitdiff
path: root/sources/log.c
diff options
context:
space:
mode:
authordweller <dweller@cabin.digital>2025-03-26 18:25:34 +0200
committerdweller <dweller@cabin.digital>2025-03-26 18:25:34 +0200
commit42e9b31e0d7324106a65ad9ff42ea2377a80fa51 (patch)
treeceee87f9e0067b6d5c71f5e728fe0b3fd0fd8b72 /sources/log.c
parent76d89eb9973671726dc7fffaf22b06a7a77be550 (diff)
fix disasm not showing instruction hex; implement a few instructions exec; add report logger
Diffstat (limited to 'sources/log.c')
-rw-r--r--sources/log.c40
1 files changed, 40 insertions, 0 deletions
diff --git a/sources/log.c b/sources/log.c
new file mode 100644
index 0000000..ba0aa86
--- /dev/null
+++ b/sources/log.c
@@ -0,0 +1,40 @@
+typedef enum log_kind
+{
+ LK_DEBUG,
+ LK_INFO,
+ LK_WARN,
+ LK_ERROR,
+ LK_FATAL,
+
+ LK_ENUM_LEN
+
+} log_kind;
+
+static char* log_kind_names[LK_ENUM_LEN] =
+{
+ "DEBUG",
+ "INFO",
+ "WARN",
+ "ERROR",
+ "FATAL",
+};
+
+#define DBG LK_DEBUG, __FILE__, __LINE__
+#define INFO LK_INFO, __FILE__, __LINE__
+#define WARN LK_WARN, __FILE__, __LINE__
+#define ERR LK_ERROR, __FILE__, __LINE__
+#define FATAL LK_FATAL, __FILE__, __LINE__
+
+void report(log_kind kind, const char* file, int line, const char* fmt, ...)
+{
+ va_list ap;
+
+ /* TODO: log levels */
+
+ printf("[%s] %s:%d - ", log_kind_names[kind], file, line);
+ va_start(ap, fmt);
+ vprintf(fmt, ap);
+ va_end(ap);
+
+ if(kind == LK_FATAL) abort();
+}