Jump to content
IGNORED

What is in ram below $4000


Recommended Posts

There be dragons!!!

 

It's all a myth.

 

The CD Bios will install below $4000 and keep a copy of the CD TOC. The MemoryTrak BIOS also installs below there.

 

If you aren't using either, its all free! free I tells you! (apart from the exception vectors)

 

(Rebooteroids uses it!)

  • Like 4
Link to comment
Share on other sites

If you are using a skunkboard to read in files from a pc then memory below $4000 is used

; getBothBuffers - waits for both buffers to be free then returns the
; first buffer ($1800) in d1. Returns 0 in d1 if both buffers do not free up.
 
; checkBuffer1 - test if buffer 1 is available (returns in d1)
checkBuffer1:
	move.l #($1800+$FEA),d1
	jmp checkbuffer

; checkBuffer2 - test if buffer 2 is available (returns in d1)
checkBuffer2:
	move.l #($2800+$FEA),d1
	jmp checkbuffer

 

Edited by Seedy1812
  • Like 5
Link to comment
Share on other sites

If you are using a Skunkboard at all then memory below $4000 is used - the Skunkboard runs most of its BIOS there ;) Check boot.s for the details, it only uses a little bit of it.

 

The $1800/$2800 buffers used for communication with the PC are in the Cypress USB controller's RAM, not Jaguar RAM.

  • Like 1
Link to comment
Share on other sites

If you are using a Skunkboard at all then memory below $4000 is used - the Skunkboard runs most of its BIOS there ;) Check boot.s for the details, it only uses a little bit of it.

 

The $1800/$2800 buffers used for communication with the PC are in the Cypress USB controller's RAM, not Jaguar RAM.

 

But that is only during the upload phase. Once it's running, unless you want to use the console/IO functions, it can be killed off, right?

Link to comment
Share on other sites

 

But that is only during the upload phase. Once it's running, unless you want to use the console/IO functions, it can be killed off, right?

 

Yeah, as long as you never want to return to the Skunk BIOS (using RTS), or use its functions, then you don't need to preserve that data.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...