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

31 lines
369 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.
2019-06-05 12:53:09 +02:00
#include <in/instrs.h>
2019-05-16 19:49:51 +02:00
2019-05-29 16:57:22 +02:00
//
// Jump instructions
//
2019-06-06 22:07:34 +02:00
IMPL_START_1(j)
{
JUMP(v1);
}
IMPL_END;
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)
{
2019-06-02 16:33:28 +02:00
if (rcx > 0) {
rcx--;
2019-05-29 18:26:28 +02:00
JUMP(v1);
}
2019-05-16 19:49:51 +02:00
}
IMPL_END;