Re: [hatari-devel] defaulting to SMALL_MEM |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/hatari-devel Archives
]
Le 13/02/2022 à 11:46, Eero Tamminen a écrit :
Especially considering that non-existing ST-RAM areas can be *read*
without exceptions, at least in some cases...
Hi
regarding non existing RAM, it all depends if you read RAM areas using
the bank memory functions in stMemory.c that check for boundary (which
is a little slower), or if you read memory by directly accessing the
allocated memory, which can indeed go out of bound if all the proper
check are not there (but is faster, which matters a lot when doing
screen convert code)
Nicolas