2019-05-30 12:44:56 +02:00
|
|
|
// The OS/K Team licenses this file to you under the MIT license.
|
2019-05-29 16:57:22 +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-29 16:57:22 +02:00
|
|
|
|
|
|
|
#define _NEED_ARCH_I
|
2019-06-05 12:53:09 +02:00
|
|
|
#include <in/arch_i.h>
|
2019-05-29 16:57:22 +02:00
|
|
|
|
|
|
|
IMPL_START_0(nop)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
IMPL_END;
|
|
|
|
|
2019-06-13 15:00:48 +02:00
|
|
|
//----------------------------------------------------------------------------//
|
2019-05-29 16:57:22 +02:00
|
|
|
|
|
|
|
IMPL_START_1(prn)
|
|
|
|
{
|
|
|
|
if (p1->mlen > 1) {
|
|
|
|
log("prn warning: large access size\n");
|
|
|
|
}
|
2019-06-13 15:00:48 +02:00
|
|
|
putchar((int)v1);
|
|
|
|
}
|
|
|
|
IMPL_END;
|
2019-05-29 16:57:22 +02:00
|
|
|
|
2019-06-13 15:00:48 +02:00
|
|
|
//----------------------------------------------------------------------------//
|
2019-05-29 16:57:22 +02:00
|
|
|
|
2019-06-13 15:00:48 +02:00
|
|
|
IMPL_START_0(cld)
|
|
|
|
{
|
|
|
|
flg &= ~DF;
|
2019-05-29 16:57:22 +02:00
|
|
|
}
|
|
|
|
IMPL_END;
|
|
|
|
|
2019-06-13 15:00:48 +02:00
|
|
|
IMPL_START_0(std)
|
|
|
|
{
|
|
|
|
flg |= DF;
|
|
|
|
}
|
|
|
|
IMPL_END;
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
|
|
|
|
IMPL_START_0(cmc)
|
|
|
|
{
|
|
|
|
flg = (flg&CF ? flg&~CF : flg|CF);
|
|
|
|
}
|
|
|
|
IMPL_END;
|
|
|
|
|
|
|
|
IMPL_START_0(clc)
|
|
|
|
{
|
|
|
|
flg &= ~CF;
|
|
|
|
}
|
|
|
|
IMPL_END;
|
|
|
|
|
|
|
|
IMPL_START_0(stc)
|
|
|
|
{
|
|
|
|
flg |= CF;
|
|
|
|
}
|
|
|
|
IMPL_END;
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
|
2019-06-05 22:11:45 +02:00
|
|
|
IMPL_START_0(clr)
|
|
|
|
{
|
|
|
|
rax = rbx = rcx = rdx = 0;
|
|
|
|
rsx = rbi = rdi = rsi = 0;
|
|
|
|
}
|
|
|
|
IMPL_END;
|
|
|
|
|
|
|
|
IMPL_START_0(cla)
|
|
|
|
{
|
|
|
|
ax0 = ax1 = ax2 = ax3 = 0;
|
|
|
|
ax4 = ax5 = ax6 = ax7 = 0;
|
|
|
|
}
|
|
|
|
IMPL_END;
|
|
|
|
|
|
|
|
IMPL_START_0(cln)
|
|
|
|
{
|
|
|
|
nx0 = nx1 = nx2 = nx3 = 0;
|
|
|
|
nx4 = nx5 = nx6 = nx7 = 0;
|
|
|
|
}
|
|
|
|
IMPL_END;
|
|
|
|
|
2019-06-13 15:00:48 +02:00
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
|