Revision b4f0a316 exec.c

b/exec.c
1959 1959
#ifdef DEBUG_UNASSIGNED
1960 1960
    printf("Unassigned mem read  0x%08x\n", (int)addr);
1961 1961
#endif
1962
#ifdef TARGET_SPARC
1963
    // Not enabled yet because of bugs in gdbstub etc.
1964
    //raise_exception(TT_DATA_ACCESS);
1965
#endif
1962 1966
    return 0;
1963 1967
}
1964 1968

  
......
1967 1971
#ifdef DEBUG_UNASSIGNED
1968 1972
    printf("Unassigned mem write 0x%08x = 0x%x\n", (int)addr, val);
1969 1973
#endif
1974
#ifdef TARGET_SPARC
1975
    // Not enabled yet because of bugs in gdbstub etc.
1976
    //raise_exception(TT_DATA_ACCESS);
1977
#endif
1970 1978
}
1971 1979

  
1972 1980
static CPUReadMemoryFunc *unassigned_mem_read[3] = {

Also available in: Unified diff