Adjustment for VSU hardware behavior on erroneous address writes

This commit is contained in:
Guy Perfect 2025-08-18 20:16:41 -05:00
parent a9a02e2d15
commit fe9c5c4781
1 changed files with 0 additions and 8 deletions

View File

@ -549,14 +549,6 @@ static void vsuReset(VB *sim) {
/* Write a typed value to the VSU bus */ /* Write a typed value to the VSU bus */
static void vsuWrite(VB*sim,uint32_t address,int type,int32_t value,int debug){ static void vsuWrite(VB*sim,uint32_t address,int type,int32_t value,int debug){
/* Only byte writes are allowed */
switch (type) {
case VB_S16:
case VB_U16:
case VB_S32:
return;
}
/* Unmapped */ /* Unmapped */
if (address & 1) if (address & 1)
return; return;