Corrected "segment" typo.
This commit is contained in:
parent
8bf7405e3c
commit
baf8d3907e
|
@ -47,7 +47,7 @@ void SP_DMA_READ (void)
|
|||
|
||||
if ((*RSPInfo.SP_RD_LEN_REG & 0xFFF) + 1 + (*RSPInfo.SP_MEM_ADDR_REG & 0xFFF) > 0x1000)
|
||||
{
|
||||
MessageBox(NULL,"SP DMA READ\ncould not fit copy in memory segement","Error",MB_OK);
|
||||
MessageBox(NULL,"SP DMA READ\ncould not fit copy in memory segment","Error",MB_OK);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -123,7 +123,7 @@ void SP_DMA_WRITE (void)
|
|||
|
||||
if ((*RSPInfo.SP_WR_LEN_REG & 0xFFF) + 1 + (*RSPInfo.SP_MEM_ADDR_REG & 0xFFF) > 0x1000)
|
||||
{
|
||||
MessageBox(NULL,"SP DMA WRITE\ncould not fit copy in memory segement","Error",MB_OK);
|
||||
MessageBox(NULL,"SP DMA WRITE\ncould not fit copy in memory segment","Error",MB_OK);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue