Apple Network Server MacOS based ROMs found

Mr. Macintosh

New Tinkerer
Dec 22, 2021
20
4
3
Can you insert some quotes from previous posts to remind us what this is about?

EDIT your post, click the [ ] button to toggle off BB code, position the text insertion point in your post where you want to insert a quote, find the old post that you want to quote and click the REPLY button of that post, then edit the quote to include just the relevant part. If you split the quote into multiple parts, then make sure each part begins with a copy of the [QUOTE="Author, post: xxxx, member: yyy"] line and ends with [/QUOTE]
Done, sorry should have added that context. 👍
 

ClassicHasClass

Active Tinkerer
Aug 30, 2022
554
1
320
63
www.floodgap.com
@ClassicHasClass @joevt @Rairii Is this the data you were looking for the Windows NT register dump?

VENEER is loaded at:

image_base = 00050000


The exception occurs almost immediately:

SRR0 = 00050014
SRR1 = 00001071
LR = 00050004
DAR = 18A2D8C5
DSISR = 42000000



Page 4 post 66
No, we have this part. We need the full register dump. Thank you for trying it, though - proves it's not just my hardware, but what ROM did you do this with?
 

joevt

Tinkerer
Mar 5, 2023
340
132
43
@ClassicHasClass you are booting into Mac OS using external SCSI?

Looking at ANS 1.1.20.1 Open Firmware in DingusPPC, there's some differences from 1.0.5 that might be strange. When it creates the 53c94 device, it does a reset-scsi which 1.0.5 does not do.

reset-scsi performs 3 commands:
3:CMD_RESET_BUS
2:CMD_RESET_DEVICE
1:CMD_CLEAR_FIFO

DingusPPC expects a 0:CMD_NOP after 2:CMD_RESET_DEVICE so 53c94 doesn't work.

Since you have a real ANS, can you tell me if this command works?
Code:
" scsi/sd@0" select-dev

If it doesn't work, then try this:
Code:
dev scsi
: new-reset-scsi
	." doing reset-scsi" cr
	3 cmd! d# 500 ms
	2 cmd!
	0 cmd!
	1 cmd!
	;
' reset-scsi ' new-reset-scsi brpatch
reset-scsi
" scsi/sd@0" select-dev

I've attached a script to list partitions from a Apple Partition Map partitioned disks. Load and use it like this:
Code:
unselect-dev
dl \ press return to begin the download
\ then paste the contents of the text file (you won't see the contents because
\ echo is not used during download), then press Control-D to evaluate the contents.
list-partitions scsi/sd@0
 

Attachments

  • list-partitions.of.zip
    1.3 KB · Views: 2