From 759808d832ed59eb096fa5b63d88aa45d1cffa8b Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Sat, 10 Dec 2016 14:55:38 +0100 Subject: [PATCH] #97, flags, use escape system for IF and OF --- src/ce_gdb.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ce_gdb.pas b/src/ce_gdb.pas index 62543bd0..36332655 100644 --- a/src/ce_gdb.pas +++ b/src/ce_gdb.pas @@ -34,7 +34,7 @@ type {$ENDIF} - TFLAG = (CF, PF, AF, ZF, SF, TF, IF_, DF, OF_); + TFLAG = (CF, PF, AF, ZF, SF, TF, &IF, DF, &OF); const FlagValues: array[TFlag] of word = (1, 4, 16, 64, 128, 256, 512, 1024, 2048);