-
Notifications
You must be signed in to change notification settings - Fork 1
/
M68k_Chk.c
74 lines (54 loc) · 1.27 KB
/
M68k_Chk.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
* Copyright (c) 2014-2024 Rene W. Olsen < renewolsen @ gmail . com >
*
* This software is released under the GNU General Public License, version 3.
* For the full text of the license, please visit:
* https://www.gnu.org/licenses/gpl-3.0.html
*
* You can also find a copy of the license in the LICENSE file included with this software.
*/
// --
#include "ReSrc4.h"
// --
void Cmd_CHK( struct M68kStruct *ms )
{
int size;
int reg;
int pos;
reg = ( ms->ms_Opcode & 0x0e000000 ) >> 25;
size = ( ms->ms_Opcode & 0x01800000 ) >> 23;
switch( size )
{
case 2:
{
ms->ms_Str_Opcode = "Chk.l";
ms->ms_ArgType = OS_Long;
break;
}
case 3:
{
ms->ms_Str_Opcode = "Chk.w";
ms->ms_ArgType = OS_Word;
break;
}
default:
{
printf( "Unsupported 'Chk' Opcode (Size: %d) at %08x\n", size, ms->ms_MemoryAdr );
ms->ms_DecodeStatus = MSTAT_Error;
goto bailout;
}
}
// --
ms->ms_ArgEMode = ( ms->ms_Opcode & 0x00380000 ) >> 19;
ms->ms_ArgEReg = ( ms->ms_Opcode & 0x00070000 ) >> 16;
ms->ms_CurRegister = & ms->ms_DstRegister;
M68k_EffectiveAddress( ms );
// --
pos = strlen( ms->ms_Buf_Argument );
sprintf( & ms->ms_Buf_Argument[pos], ",%s", Dx_RegNames[reg] );
// --
ms->ms_OpcodeSize = ms->ms_ArgSize;
bailout:
return;
}
// --