File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ void dsp56303_device::device_start()
2626
2727u32 dsp56303_device::get_reset_vector () const
2828{
29- return (m_omr & 15 ) == 0 ? 0xc00000 : (m_omr & 15 ) ? 0x008000 : 0xff0000 ;
29+ return (m_omr & 15 ) == 0 ? 0xc00000 : (m_omr & 15 ) == 8 ? 0x008000 : 0xff0000 ;
3030}
3131
3232void dsp56303_device::device_reset ()
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ void dsp56311_device::device_start()
2626
2727u32 dsp56311_device::get_reset_vector () const
2828{
29- return (m_omr & 15 ) == 0 ? 0xc00000 : (m_omr & 15 ) ? 0x008000 : 0xff0000 ;
29+ return (m_omr & 15 ) == 0 ? 0xc00000 : (m_omr & 15 ) == 8 ? 0x008000 : 0xff0000 ;
3030}
3131
3232void dsp56311_device::device_reset ()
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ void dsp56362_device::device_start()
2626
2727u32 dsp56362_device::get_reset_vector () const
2828{
29- return (m_omr & 15 ) == 0 ? 0xc00000 : (m_omr & 15 ) ? 0x008000 : 0xff0000 ;
29+ return (m_omr & 15 ) == 0 ? 0xc00000 : (m_omr & 15 ) == 8 ? 0x008000 : 0xff0000 ;
3030}
3131
3232void dsp56362_device::device_reset ()
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ void dsp56364_device::device_start()
2727u32 dsp56364_device::get_reset_vector () const
2828{
2929 // Technically, modes 0 and 8 are undocumented and unknown
30- return (m_omr & 15 ) == 0 ? 0xc00000 : (m_omr & 15 ) ? 0x008000 : 0xff0000 ;
30+ return (m_omr & 15 ) == 0 ? 0xc00000 : (m_omr & 15 ) == 8 ? 0x008000 : 0xff0000 ;
3131}
3232
3333void dsp56364_device::device_reset ()
You can’t perform that action at this time.
0 commit comments