1
0
Fork 0
mirror of https://github.com/pnx/m16vm synced 2026-06-16 03:44:55 +02:00

vm/cpu.c: remove CPU_FLAGS_HALT. defined in cpu.h

This commit is contained in:
Henrik Hautakoski 2019-04-16 15:00:18 +02:00
parent a105d5087e
commit 48d03c85a0
No known key found for this signature in database
GPG key ID: 839F3A7EAFAEAFAA

View file

@ -31,9 +31,6 @@
#include "syscall.h"
#include "instr_decode.h"
/* CPU flags */
#define CPU_FLAGS_HALT (1<<0)
#ifdef M16_DEBUG_INSTR
#define debug(...) fprintf(stderr, __VA_ARGS__)
#else