Re: [hatari-devel] ROMSPEED effect? |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/hatari-devel Archives
]
- To: hatari-devel@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [hatari-devel] ROMSPEED effect?
- From: Uwe Seimet <Uwe.Seimet@xxxxxxxxx>
- Date: Thu, 13 Aug 2015 07:11:42 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; t=1439442703; l=761; s=domk; d=seimet.de; h=In-Reply-To:Content-Disposition:Content-Type:MIME-Version: References:Subject:To:From:Date; bh=i7WR4K36DCdWGAxMdBJ1bDz5cCi3oPn8JdhH4JBqHyQ=; b=WBGy6RIKZ54CSBQlWSsatf1ZDgePVO6SGaZYCZubjvDGFlC/prYwoOfWO6fOStD/Va2 2rH8nhps1nIyMdbB6HlLn1QuPMLnP1UahP8nQHZ1R8VQ3TZdLbC1Vltw75ltc+W6dKUHC 8PNhts+PbraogibfPi71k2aSg2HAAAVM8dU=
Hi,
> MMU cannot be enabled with TT-RAM, so I'm not
> sure whether ROMSPEED actually did anything.
Provided that you were using the current version 3.11 of ROMSPEED, you
can find the sources in the ROMSPEED archive. There is not really much
PMMU-related code except for the modification of the descriptor relevant
for the mapping of the ROM contents (this is what _sysbase points to):
move.l rombuf,d0 ;new "ROM" address
or #5,d0 ;write protect
move.l _sysbase,a0
ptestr #2,([8,a0]),#7,a0
move.l d0,(a0) ;update descriptor in the existing table
pflusha
If there is no (working) PMMU support I would expect nothing visible to
happen, indeed. Except for having less RAM because the ROM contents have
been copied.
Take care
Uwe