1
0
mirror of https://gitlab.os-k.eu/os-k-team/kvisc.git synced 2023-08-25 14:05:46 +02:00
kvisc/pc/instrs/jumps.c

71 lines
949 B
C
Raw Normal View History

2019-05-30 12:44:56 +02:00
// The OS/K Team licenses this file to you under the MIT license.
2019-05-16 19:49:51 +02:00
// See the LICENSE file in the project root for more information.
#include "instrs.h"
#include "arch_i.h"
2019-05-30 20:23:27 +02:00
IMPL_COND(jmp);
IMPL_COND(loop);
2019-05-29 16:57:22 +02:00
//
// Jump instructions
//
2019-05-16 19:49:51 +02:00
IMPL_START_1(jmp)
{
2019-05-29 18:26:28 +02:00
JUMP(v1);
}
IMPL_END;
IMPL_START_1(loop)
{
if (ctx->r[RCX].val > 0) {
ctx->r[RCX].val--;
JUMP(v1);
}
2019-05-16 19:49:51 +02:00
}
IMPL_END;
2019-05-30 20:23:27 +02:00
IMPL_START_1(cjmpa)
2019-05-16 19:49:51 +02:00
{
if (!(ctx->r[FLG].val & ZF) && !(ctx->r[FLG].val & CF))
2019-05-29 16:57:22 +02:00
JUMP(v1);
2019-05-16 19:49:51 +02:00
}
IMPL_END;
2019-05-30 20:23:27 +02:00
IMPL_START_1(cjmpae)
2019-05-16 19:49:51 +02:00
{
if (!(ctx->r[FLG].val & CF))
2019-05-29 16:57:22 +02:00
JUMP(v1);
2019-05-16 19:49:51 +02:00
}
IMPL_END;
2019-05-30 20:23:27 +02:00
IMPL_START_1(cjmpb)
2019-05-16 19:49:51 +02:00
{
if (!(ctx->r[FLG].val & ZF) && ctx->r[FLG].val & CF)
2019-05-29 16:57:22 +02:00
JUMP(v1);
2019-05-16 19:49:51 +02:00
}
IMPL_END;
2019-05-30 20:23:27 +02:00
IMPL_START_1(cjmpbe)
2019-05-16 19:49:51 +02:00
{
if (ctx->r[FLG].val & CF)
2019-05-29 16:57:22 +02:00
JUMP(v1);
2019-05-16 19:49:51 +02:00
}
IMPL_END;
2019-05-16 20:11:17 +02:00
IMPL_START_1(jcxz)
{
if (!ctx->r[RCX].val)
2019-05-29 16:57:22 +02:00
JUMP(v1);
2019-05-16 20:11:17 +02:00
}
IMPL_END;
2019-05-30 20:23:27 +02:00
IMPL_START_1(jcxnz)
{
if (ctx->r[RCX].val)
JUMP(v1);
}
IMPL_END;