BlockMoveData

This commit is contained in:
Kelvin Sherlock 2014-12-18 14:39:48 -05:00
parent c03938ca7d
commit 304dcda66c
2 changed files with 5 additions and 1 deletions

View File

@ -562,6 +562,9 @@ namespace MM
uint16_t BlockMove(uint16_t trap)
{
// also implements BlockMoveData.
// BlockMove will flush caches, BlockMoveData will not.
/*
* on entry:
* A0 Pointer to source

View File

@ -223,7 +223,8 @@ namespace ToolBox {
break;
// BlockMove (sourcePtr,destPtr: Ptr; byteCount: Size);
case 0xa02e:
case 0xa02e: // BlockMove
case 0xa22e: // BlockMoveData
d0 = MM::BlockMove(trap);
break;