mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-03 17:17:10 +02:00
kernel: fix 512-kB RAM check on mono being duped by cache
This was noticed by Sentaro21 and tested by CalcLoverHK on a Slim.
This commit is contained in:
parent
4cd81571bc
commit
3e7e8e1fa0
1 changed files with 3 additions and 3 deletions
|
@ -90,10 +90,10 @@ void hw_detect(void)
|
|||
gint[HWFS] = HWFS_CASIOWIN;
|
||||
}
|
||||
|
||||
/* Detect RAM by checking if 8804'0000 is the same as 8800'0000. */
|
||||
/* Detect RAM by checking if a804'0000 is the same as a800'0000. */
|
||||
|
||||
volatile uint8_t *R4 = (void *)0x88040000;
|
||||
volatile uint8_t *R0 = (void *)0x88000000;
|
||||
volatile uint8_t *R4 = (void *)0xa8040000;
|
||||
volatile uint8_t *R0 = (void *)0xa8000000;
|
||||
|
||||
/* Make backups */
|
||||
uint8_t b0 = *R0;
|
||||
|
|
Loading…
Add table
Reference in a new issue