1
0
mirror of https://gitlab.os-k.eu/os-k-team/kvisc.git synced 2023-08-25 14:05:46 +02:00
This commit is contained in:
julianb0 2019-06-02 11:05:48 +02:00
parent c461b68247
commit 710d2ca3f9
No known key found for this signature in database
GPG Key ID: 9C7ACF0C053FB8A1

View File

@ -28,10 +28,6 @@ IMPL_OUT;
IMPL_START_1(lea) IMPL_START_1(lea)
{ {
if (!p2->mem) {
_except(ctx, E_ILL, "Bad LEA format");
}
v1 = (p2->type == A_REG ? ctx->r[p2->val].val : p2->val) + p2->off; v1 = (p2->type == A_REG ? ctx->r[p2->val].val : p2->val) + p2->off;
} }
IMPL_OUT; IMPL_OUT;