diff --git a/target/cr16c/translate.c b/target/cr16c/translate.c index 839976dafb..b474c47df8 100644 --- a/target/cr16c/translate.c +++ b/target/cr16c/translate.c @@ -1574,7 +1574,7 @@ static bool trans_pop(DisasContext *ctx, arg_pop *a) { int32_t count = a->count + 1; // todo if cfg.sr = 1 if (true) { - if (count + a->dest > 15) { // TODO verify against ISA table + if (a->count + a->dest > 15) { // invalid return false; }