Previous 199869 Revisions Next

r17378 Tuesday 21st August, 2012 at 15:31:48 UTC by Angelo Salese
Some other small clean-ups
[src/emu/cpu/v810]v810.c

trunk/src/emu/cpu/v810/v810.c
r17377r17378
1/********************************************
1/******************************************************************
22 NEC V810 (upd70732) core
33  Tomasz Slanina - analog[at]op.pl
44
55 Change Log
6 - 21/08/2012 - Fixed SET.F behaviour (Angelo Salese)
7 - 20/08/2012 - Fixed a sign bug with CVT.WS opcode (Angelo Salese)
8 - 16/08/2012 - Added XB, XH, MPYHW, MOVBSU, ORBSU and ANDNBSU opcodes
9                (Angelo Salese)
10 - 19/11/2010 - Fixed interrupt handing and flag position in PSW register
11                (Miodrag Milanovic)
12 - 18/11/2010 - Added bare bones irq support (Miodrag Milanovic)
613 - 20/07/2004 - first public release
714
815
r17377r17378
1219  - traps/interrupts/exceptions
1320  - bitstring opcodes
1421  - timing
15  - missing opcodes : reti , trap
22  - missing opcodes : trap, caxi
1623
17********************************************/
24******************************************************************/
1825
1926#include "emu.h"
2027#include "debugger.h"
r17377r17378
611618
612619static UINT32 opTRAP(v810_state *cpustate,UINT32 op)
613620{
614   logerror("V810: TRAP @ %X\n",cpustate->PC-2);
621   printf("V810: TRAP @ %X\n",cpustate->PC-2);
615622   return clkIF;
616623}
617624

Previous 199869 Revisions Next


© 1997-2024 The MAME Team