Author Topic: CDG5 release  (Read 17966 times)

Online Protools5LEGuy

  • Global Moderator
  • Platinum Member
  • *****
  • Posts: 2755
CDG5 release
« on: February 03, 2017, 12:59:34 PM »
Nanopico and Elliot have been working on
Quote
a brand new MPW-based build system for the Mac OS ROM, with lots of information about its internals, and opportunities for hacking.

Elliot want you all know that :
Quote
# CDG5

CDG5 is a project aiming to reverse, patch and rebuild the Macintosh NewWorld ROM. The contents of this repository can be built using the Macintosh Programmer's Workshop (MPW) into a complete "Mac OS ROM" file, which can then be used to boot Mac OS 9.2.2 on any compatible NewWorld Mac.

Reversing the ROM is an ongoing, open-ended process (and heaps of fun!). It was put on hold for a couple of months while we moved our build system away from a motley collection of Python scripts. This repo currently uses only unlinked binaries in lieu of reversed code, but this will improve very quickly. Binaries are in `:Prebuilt:LateNewWorld:`, and we prefer to keep them in Rez format so that we can apply compile-time conditionals. (Once we understand MPW's PPCAsm better, our annotated NanoKernel disassembly will be merged in.)

## Build

Because we deal with generously sized binaries, you should increase MPW's memory allocation to well over 8 MB before you build. Clone this repo, set MPW's current directory to your local clone, and run the script `:Tools:FixRepo` from your Worksheet:

```
:Tools:FixRepo
```

(Hit Command-Return or the numpad Enter key to issue the command.)

The `:Make:Build` script wraps the `:Make:NewWorld.make` makefile. Set MPW's current directory to the cdg5 repo, then:

```
:Make:Build NewWorld
```

Your file will end up in `:BuildResults:NewWorld:Mac OS ROM`.

As we develop useful patches to the ROM code, we will conditionalize them using feature flags. Flags are declared in `:Make:FeatureList` and enabled in `:Make:NewWorld.make`.

## NewWorld ROM

The first Macintosh shipped with a 64 KB ROM containing much of the high-level Macintosh Toolbox as well as low-level hardware-specific code. While the Mac still requires a disk with a System file to boot, having much of the OS in ROM saves loading it from a slow disk drive and conserves precious RAM. Buggy code in the ROM can be overridden with code on disk. The Toolbox ROM also makes it hard to produce an unauthorized Mac clone, and allows a graphical interface to be shown very early in the boot process.

Subsequent Macs have progressively larger ROMs, the size doubling with every step. The "Universal" 68k ROMs contain structures describing the hardware on several supported machines, and select one of these at runtime. Power Macs started shipping with a 4 MB "RISC" ROM, which has the bottom three megabytes laid out like a familiar Toolbox ROM and the remaining one megabyte dedicated to PowerPC-specific code and structures.

Machines with fast disks and plentiful, cheap RAM don't benefit as much from a large built-in ROM. Starting with the iMac, Apple's improved Open Firmware implementation loads and runs a "Mac OS ROM" file in the System Folder. Macs that do this are termed "NewWorld" Macs, and are equal to the set of Macs that have a built-in USB port.

## Structure

This section attempts to correlate the structure of the NewWorld ROM and boot process with this source tree.

### Open Firmware

An Open Firmware implementation is present in all PCI-equipped Macs (this excludes the first, NuBus-equipped 61xx/71xx/81xx Power Macs).

To boot from a partition, the Open Firmware on a NewWorld Mac (and possibly any CHRP machine?) searches the "blessed" folder for a file of type `tbxi` and parses the `\<CHRP-BOOT>` structure within. On Mac OS 8-9 this file is `System Folder:Mac OS ROM`. On Mac OS X it is `System:Library:CoreServices:BootX`. Open Firmware seems to ignore everything in this file after the ASCII "EOF" character, leaving us free to append a lot of useful data to it. Those parts of the file that are useful in early boot are linked by the MPW shell script `:NewWorld:WrapMacOSROM` from several other sources. Some code fragments used much later in the boot process are also appended to the data fork for convenience. Lastly, an Adler-32 checksum is appended to the file by the script `:NewWorld:ChecksumMacOSROM`, which wraps a small C utility.

For the file to be bootable, the `\<COMPARTIBLE>` field must match the "compatible" key in the root of the machine's Open Firmware device tree. If they do not match, the partition will not be treated as bootable and will not show up in the Open Firmware graphical boot picker.

Open Firmware then executes the Forth code in the `\<BOOT-SCRIPT>` code of the file, which is copied by `WrapMacOSROM` from `:NewWorld:BootScript.fs`. This code checks the Adler-32 checksum mentioned above, allocates room in RAM for the the Trampoline ELF file and its "Parcels" data structure, copies these from fixed offsets in the file, and hands control to the Trampoline. Instead of a Parcels structure, Mac OS ROM v1.x files (those that shipped with NewWorld G3 Macs before the first Power Mac G4s were released) have a simple LZSS-compressed 4 MB Toolbox ROM. Newer v2.x files have been called "NewNewWorld" ROMs.

### Trampoline and Parcels

The Trampoline prepares an environment for the PowerPC Toolbox ROM to run in, and then hands it control. It contains some fascinating strings, and its debug output can be captured over telnet. But being contained in an ELF file, it is not easy to build in MPW. I have a couple of ideas about this, and would like suggestions.

The Trampoline understands both the native PowerPC and emulated 68k parts of the Mac OS, and initialises structures to be used by both: (this is not a complete list)
- a mapping from the PowerPC to the 68k interrupt architecture (The PowerPC has one interrupt line, managed by an OpenPIC chip, while the 68xxx chips have eight, with specific roles assigned by the Mac OS.)
- the ConfigInfo struct, describing what the PowerPC NanoKernel needs to know about the hardware
- the "Universal" ProductInfo struct, inherited from the 68k ROMs, describing what the 68k ROM code needs to know about its emulated environment
- a flattened version of the device tree, modified as directed by the Toolbox parcels
- a template page table for the NanoKernel to use

The 4 MB Toolbox ROM and several native PowerPC drivers are stored as parcels. The `:Tools:ToolSource:ParcelLayout.c` tool links the Parcels blob accoding to the description in `:NewWorld:Parcels.r`. Blobs get compressed using the LZSS algorithm, which is necessary to keep the data fork of the Mac OS ROM file within Open Firmware's size limit of 4 MB. Our LZSS implementation in `:Tools:ToolSource:LZSS.c` is naive with poor but good-enough compression, but it is fast enough not to bother caching compressed blobs. This is the third rewrite. There will be no more!

### NanoKernel and Emulator

The top megabyte of the PowerPC ROM contains code and structures needed to bootstrap an emulated 68k environment. The `:RISC:` folder contains PowerPC assembly files (most notably `NanoKernel.s` and `Emulator.s`) and `:RISC:RISC.make` contains build commands.

The NanoKernel (camel case preserved for authenticity) is at the very bottom of the Mac OS stack. It controls the PowerPC exception vectors and memory map, and is the only code (except for the firmware's "Runtime Abstraction Services" (RTAS) code) to run with virtual memory disabled.

Because hardware initialization code was moved from the OldWorld Toolbox ROM to the NewWorld Trampoline, the Trampoline hands control to the NanoKernel directly. A C prototype for the handover call would look like this:
```
void NKInit(
   /*r3*/ struct ConfigInfo *ConfigInfop,
   /*r4*/ struct ProcessorInfo *ProcessorInfop,
   /*r5*/ struct SysInfo *SysInfop,
   /*r6*/ /*not sure*/,
   /*r7*/ OSType RTASEnable, /* 'rtas' or 0 */
   /*r8*/ void RTASDispatch(char *),
   /*r9*/ struct HWInfo *HWInfo
);
```

Gary Davidian wrote the first version of the NanoKernel, along with the Emulator, for the first "Piltdown Man" (PDM) Power Macs. Rene Vega later rewrote the NanoKernel to add symmetric multiprocessing support and many other goodies. Version 1 shipped in the ROM of every OldWorld Power Mac, and in Mac OS ROM file versions up to 1.4. Version 2 never shipped in a physical ROM, but can be loaded from a 'krnl' resource in the System file during boot to replace a running v1 kernel. It also came as part of Mac OS ROM file versions 1.6 and later. Both forms, in the System file and the Toolbox image, debuted with Mac OS 8.6.

While NK v1 only really arbitrates between the emulated 68k and native PowerPC execution modes, v2 allows multiple preemptible tasks to be scheduled, with their own protected address spaces and sophisticated interprocess communications. One of these tasks is the "blue" Mac OS task, which contains the entire cooperative Mac OS environment. The NanoKernel delegates most PowerPC interrupts to the blue task as 68k interrupts. The Emulator is non-reentrant and runs only inside the blue task.

The ability to spawn tasks outside the blue task is exposed by version 2 of the Multiprocessing Services API (available on Carbon too!). The later point releases of Mac OS 9 provide glue code for preemptive tasks ("MTasks") to call blue-only routines remotely.

While the Emulator only ever runs within the blue task, its structures are global, and the NanoKernel is aware of it. For now we know fairly little about the Emulator, but it is likely we will need to look more closely, because it seems to be the immediate barrier to running Mac OS 9 on the Mac mini. When the blue task is first scheduled, the emulated 68k acts like a freshly booted chip, and begins executing code in the Toolbox ROM.

### 68k ROM

The 68k ROM has three main components: the MainCode image, the ROM resources, and the Slot 0 DeclROM. `RomLayout` builds a 3 MB 68k ROM image according to the layout specified in `:Make:NewWorldLayout.r`.

#### MainCode image

This monolithic block of 68k code lives at the bottom of ROM. It begins with a somewhat declarative header and contains bootstrap code for a (real or emulated) 68k, code to identify the host machine model, code to chainload the boot blocks and System file from a startup partition, code implementing the A-trap mechanism, and all the 68k Toolbox Managers. A lot of this code should be very easy to unlink. When the 68k Emulator "wakes up", it follows the 68k RESET vector into the MainCode image.

#### ROM resources

There are several (obviously nonrelocatable) Memory Manger blocks in the ROM, which the Resource Manger sees as loaded resources. The resource list for `RomLayout` comes from `:Resources:RomResources.r`. Both `RomLayout` and `ParcelLayout` get their binaries from the resource files built in `:BuildResults:NewWorld:Rsrc:`.

Among their many uses, ROM resources are the preferred way to put high-level PowerPC code in the Toolbox ROM. There is a half-baked mechanism for ROM resource selection at runtime, using 64-bit fields, but it is only used to select some resources related to AppleTalk and floating-point calculation. We could possibly resurrect it to select resources on newer Macs.

#### Empty space

Unused space in the Toolbox ROM is filled with the pattern 'kckckckc'. You can find Kurt Clark's name elsewhere too. On a NewWorld Mac, a physical RAM page full of 'kc's will be unmapped from the Toolbox ROM and used elsewhere, saving about 800 KB of memory.

#### Slot 0 DeclROM

The deprecated Slot Manager uses "Declaration ROMs" to describe NuBus cards. The logic board sits in a fictitious "Slot 0" and has its own DeclROM, which can contain drivers, at the top of the 68k Toolbox ROM. On later Power Macs this structure is tiny and vestigial. We have only bothered to extract it as a raw binary, `DeclData`.

## Classic Environment

The Classic Environment ("BlueBox") also used a Parcels structure, albeit with fewer hardware drivers. Comments in `:NewWorld:Parcels.r` describe what is in each version of the structure.

## Versions

Most binaries have been taken from Mac OS ROM v9.6.1 in Apple's NetBoot package. This has the best hardware support of any extant version, although it seems not to support the Mirrored Drive Door Power Mac G4s very well. For this reason, some newer code from the v10.2.1 "Custer" ROM is also in the repo. For now, it can be enabled with the feature flags CusterBacklightParcel and CusterUSBShimKeyboard.

iMic's patched "Generic" Mac OS ROM v10.2.1 has been used as the source for the file's resource fork. The resource fork, as well as those two code fragments in the data fork, allow a Mac OS ROM to act as a System Enabler. Understanding these better so that they can be built more intelligently is a priority. Many resources are localised: this helps to narrow down the list of resources used by low-level parts of the system.

We are proud of our members.
Looking for MacOS 9.2.4

Offline MacTron

  • Global Moderator
  • Platinum Member
  • *****
  • Posts: 2116
  • keep it simple
Re: CDG5 release
« Reply #1 on: February 03, 2017, 01:56:01 PM »
Quote from: Protools5LEGuy link=topic=3661.msg24245#msg24245
We are proud of our members.
Yes, indeed, for a long time I think we are seeing the beginning of a new era ... ;D

Awesome !
Please don't PM about things that are not private.

Offline nanopico

  • Moderator
  • Platinum Member
  • *****
  • Posts: 767
Re: CDG5 release
« Reply #2 on: February 03, 2017, 05:47:25 PM »
I will say thank you all for the support and encourage meant that has been given all around.

Quick history lesson.
This whole things started with iMic trying to get OS 9 on his G4 iBook (correct me if I'm wrong) and the attempts at getting the FW800 MDD's booting 9. 
This went a long way. 
I have the last model iBook which didn't work with all the fixes that were out there.
I got involved and pushed this further. The only reason I even started this was because I wanted to see the OS 9 desktop on my iBook G4 without some emulator or anything.
Didn't have to work, just wanted to see it. I did that a long time ago now. And me being stubborn just kept it going as now I want to see it actually work correctly. Later ELN joined in.  Got to give that kid credit.
Now we are on this roller coaster ride to do way more than I ever even imagined when I even started thinking about this. 

So again thank you (I'm sure ELN is very grateful as well)

And here is the first thread I started on this insanely crazy journey. (Who'd have thought we'd even get this far?)
http://macos9lives.com/smforum/index.php/topic,2727.msg16615.html
If it ain't broke, don't fix it, or break it so you can fix it!

Offline s0s

  • Enthusiast Member
  • ***
  • Posts: 34
  • I love my 4.0GHz wife
    • Tech Stuff Only
Re: CDG5 release
« Reply #3 on: February 03, 2017, 06:49:20 PM »
Awesome, way to go Nanopico and Elliott! :D

Offline MacOS Plus

  • Gold Member
  • *****
  • Posts: 418
  • The 9serve Lives!
Re: CDG5 release
« Reply #4 on: February 04, 2017, 09:40:35 AM »
  I'm currently heavily reorganizing my computer work area and taking better stock of all the loose parts I have.  The software development component of the Mac OS 9 project may be a bit over my head but hardware is my strong side.  When more updates to the OS are available to test I will be quite well ready for additional testing here on MDD FW800 and Xserve G4 platforms.  These machines are already running OS 9 now to the extent hardware support is working so far, but there's still plenty that can be tested.  If anyone would like particular expansion cards tested in these systems I would be happy to try if I have them.

  Great work, guys!

Online Protools5LEGuy

  • Global Moderator
  • Platinum Member
  • *****
  • Posts: 2755
Re: CDG5 release
« Reply #5 on: April 02, 2017, 04:11:25 PM »

I have hacked on the CDG5 build system some more. Here is a documented release, WITH all that NanoKernel reversing that we've been working on for the last year or so. Mind releasing it on the site? Anyone with MPW and a Power Mac can use it.

https://www.dropbox.com/s/hszdldgq7us9rzw/2017-04-02-cdg5-with-nk.sit?dl=0

Cheers

Santa is back on April!!!


Looking for MacOS 9.2.4

Online Protools5LEGuy

  • Global Moderator
  • Platinum Member
  • *****
  • Posts: 2755
Re: CDG5 release
« Reply #6 on: April 02, 2017, 04:22:53 PM »
I did downloaded on Windows  :-[ . I hope it keep its fork.
Looking for MacOS 9.2.4

Offline ELN

  • Gold Member
  • *****
  • Posts: 295
  • new to the forums
Re: CDG5 release
« Reply #7 on: April 03, 2017, 02:37:33 AM »
The contents of that sit file should be happy to have forks and Finder info stripped. The README specifies MPW commands that can restore the necessary metadata. So guys, I'd love to know if anyone else can build it. If nothing else, you get a Happy Mac with a cool logo (of my own design) on it. And you can put your own messages in the NanoKernel log.

Anyone got a Mac mini G4 and keen to do some testing for me? I've got some ideas...

Offline ELN

  • Gold Member
  • *****
  • Posts: 295
  • new to the forums
Re: CDG5 release
« Reply #8 on: May 24, 2017, 05:09:39 AM »
For the record

CDG5 is under active development. The project aims to reverse, document and hack low level parts of the Mac OS.

We have ported our 2016 build system (which had heaps of weird dependencies) to the Macintosh Programmer's Workshop (MPW). Now the build process only requires Mac OS on a PowerPC. The Classic Environment and SheepShaver are also fine.

The CDG5 repository is now hosted privately on GitLab, so our old GitHub repos have been abandoned. Anyone interested, no matter what their technical background, is welcome to request access.

Can anyone guess how I picked the name?

Offline powermax

  • Enthusiast Member
  • ***
  • Posts: 80
  • Hobbyist programmer
Re: CDG5 release
« Reply #9 on: May 29, 2017, 07:03:38 PM »
Quote
For now we know fairly little about the Emulator, but it is likely we will need to look more closely, because it seems to be the immediate barrier to running Mac OS 9 on the Mac mini.

I did some research on the design and implementation of the Macintosh 68k Emulator long ago based on my personal reverse-engineering effort. I don't remember all the details but I'll do my best and try to summarize the most important points right off the top of my head.

The very first version of that emulator shipped with the PDM Macs (i.e. PowerMac 6100, 7100 and 8100) was written by Gary Davidian. It's the so-called interpretative emulator because it stupidly interprets one 68k instruction at a time by fetching its opcode from memory and executing the dedicated emulation subroutine.

Because the "interpretative" approach to emulation has been quickly proven to be rather slow, an add-on, called "DR emulator" has been developed. "DR" stands for "dynamic recompiling" and means that the emulator will translate chunks of guest code (68k) into native code (PPC) on the fly. The DR emulator caches translated code for the frequently executed guest code blocks in a dedicated memory called "emulator cache" and uses the translated native version whenever possible. This greatly helps to speed up loops. The DR emulator has been written by Eric Traut - the same guy who wrote the famous Connectix VirtualPC x86 emulator (owned by M$oft now). The DR emulator entered the Mac world with the first PCI-based Mac.

The code of the 68k emulator consists of two parts: the opcodes table and instruction emulation subroutines. The DR emulator adds several translation subroutines as well as DR emulator cache.

The opcodes table has the size of 0x800000 bytes = 65536 opcodes * 2 PPC instructions * 4 bytes. There are therefore 2 PPC instructions for each of 65536 68k opcodes: the first one is the part of emulation and the second one jumps either to the emulation subroutine (for complex instructions) or to the fetch subroutine of the next opcode (for simply instructions that can be emulated with only one PPC instruction).

Both versions of the 68k emulator run in the user mode and communicate with the NanoKernel through the so-called "kernel trap table" that consists of eight TWI instructions trapping directly into the NanoKernel. All pre v2 NanoKernel calls (MMU and exception handling) are implemented as F-Traps - the "SC" instruction isn't used in the NanoKernel v1.

Emulator's memory (state and cache) is allocated by NanoKernel. Moreover, the emulator requires the so-called ROM Overlay to be implemented in the NanoKernel. That means that during emulator's startup or reset the logical address $000000 - $01FFFF will be mapped to ROM by the NanoKernel in order to emulate the behavior of the 68k CPU that fetches the address of the first instruction at $0000. As long as 68k will access memory in the address range $400000 - $41FFFF, NanoKernel will detect this condition and switch off the ROM Overlay by remapping the address range $000000 - $01FFFF back to RAM.

There is a dedicated F-Trap call for the 68k emulator that is used by the system software to modify emulator's state and to query some internal information like emulator's version. The "emulator update extension" of the MacsBug 6.6 (6.3?) package relies heavily on this call to detect buggy emulator versions requiring patches...

This is the basic info. Feel free to ask me if you have any questions...
« Last Edit: May 29, 2017, 07:16:58 PM by powermax »

Online Protools5LEGuy

  • Global Moderator
  • Platinum Member
  • *****
  • Posts: 2755
Re: CDG5 release
« Reply #10 on: May 29, 2017, 07:27:56 PM »
Welcome powermax!

That is a perfect introduce yourself post!  ;D

Now we have people around to do something GREAT!
Looking for MacOS 9.2.4

Offline ELN

  • Gold Member
  • *****
  • Posts: 295
  • new to the forums
Re: CDG5 release
« Reply #11 on: May 29, 2017, 09:18:14 PM »
Great post, powermax. Have we corresponded on a different forum before? Grab a GitLab account and check out our ROM build repo.

Here are a few of my own notes on the NanoKernel-Emulator interface, largely pulled from my email correspondence with nanopico.

There are 10-ish different NanoKernel calls that can be made from userspace. They can be issued from any native code -- not just the kernel trap table.
Code: [Select]
ReturnFromException      via trap #0
RunAlternateContext      via trap #1                      switches out of emulator into native mode; MixedMode and emulator cooperate to call this trap
ResetSystem              via trap #2                      called by emulator in response to 68k RESET instruction, which is meant to reset the peripherals, not the CPU
VMDispatch               via trap #3                      called by emulator in response to legacy $FE0A VMDispatch opcode, also called NKDispatch and MMUDispatch in some Cube-E comments
PrioritizeInterrupts     via trap #4                      calls the machine-specific Primary Interrupt Handler, which polls the OpenPIC and then triggers the appropriate 68k interrupt
PowerDispatch            via trap #5                      not sure what it does, but it's a short function; might call the CPU plugin
RTASDispatch             via trap #6                      self-explanatory
CacheDispatch            via trap #7                      seems to affect L2 cache behaviour?
MPDispatch               via trap #8 OR sc instruction    this is what MPLibrary wraps
CallAdapterProcPPC       via trap #12                     unimplemented in NKv2 -- superseded?
CallAdapterProc68k       via trap #14                     unimplemented in NKv2 -- superseded?
Thud (my name)           via trap #15                     enters the NanoKernel debugger -- "thud"

NKv2 does not seem to bother implementing the 68k Overlay mode, even though NKv1 seemingly does. Instead, the NanoKernel initialises low logical memory according to an array of key/value pairs in the ConfigInfo struct. The latest versions of the NewWorld ROM declare only one pair:

Code: [Select]
LowMem 0x00000004, 0xffc0002a
This sets the 68k reset vector to a location in the ROM's logical range, which on PCI PowerMacs starts at ffc00000.

Offline DieHard

  • Global Moderator
  • Platinum Member
  • *****
  • Posts: 2368
Re: CDG5 release
« Reply #12 on: May 29, 2017, 11:14:26 PM »
Let me know if any DieHard Hardware CarePacks need to be shipped to developers; I have many extra G4 towers if you guys are in need of one for development.

Offline powermax

  • Enthusiast Member
  • ***
  • Posts: 80
  • Hobbyist programmer
Re: CDG5 release
« Reply #13 on: May 30, 2017, 01:27:24 AM »
Quote
Have we corresponded on a different forum before?
Yes, at emaculation IIRC...

Quote
Grab a GitLab account and check out our ROM build repo.
Would you tell me the precise location of that repo? Is it a private repo?

Quote
NKv2 does not seem to bother implementing the 68k Overlay mode, even though NKv1 seemingly does. Instead, the NanoKernel initialises low logical memory according to an array of key/value pairs in the ConfigInfo struct.

NKv1 also does initialize the low-memory globals like you just described. This happens BEFORE the ROM Overlay is activated. The ROM Overlay will be switched on in the last stage of the VMDispatch initialization, right before the emulator initialization routine is called. Not sure how it works in NKv2 though.

Are you sure NKv2 doesn't use the ROM Overlay? It would be very interesting to see how the 68k reset is implemented without the ROM Overlay.

It's easy to check whether the ROM Overlay is present by looking at BatMap32OvlInit (offset $0x358) and SegMap32OvlInit (offset $0x24C) fields of the NKConfigInfo. What is stored there on the NewWorld arch?

Offline powermax

  • Enthusiast Member
  • ***
  • Posts: 80
  • Hobbyist programmer
Re: CDG5 release
« Reply #14 on: May 30, 2017, 02:03:16 AM »
Quote
NKv2 does not seem to bother implementing the 68k Overlay mode
After thinking abit over this statement I came to the conclusion that that might be indeed true - the ROM Overlay isn't probably required at all because the machine starts up in the native code on OS8/9 as opposite to the OldWorld arch...

Offline nanopico

  • Moderator
  • Platinum Member
  • *****
  • Posts: 767
Re: CDG5 release
« Reply #15 on: May 30, 2017, 06:04:26 AM »
Quote
Grab a GitLab account and check out our ROM build repo.
Would you tell me the precise location of that repo? Is it a private repo?

Yes it is a private repo.
If it ain't broke, don't fix it, or break it so you can fix it!

Offline powermax

  • Enthusiast Member
  • ***
  • Posts: 80
  • Hobbyist programmer
Re: CDG5 release
« Reply #16 on: May 30, 2017, 06:19:26 AM »
Quote
Yes it is a private repo.

Well, is there smth I could help you with? I'm a quite experienced C and Asm hobbyist programmer...

Offline ELN

  • Gold Member
  • *****
  • Posts: 295
  • new to the forums
Re: CDG5 release
« Reply #17 on: May 31, 2017, 07:48:24 AM »
I'm not sure what the Trampoline ends up putting in the dynamic ConfigInfo. I will have a closer look. But NKv2 ignores all but the supervisor-mode SegMap, PageMap and BatMap.

Our current short-term goal is busting the 1.5 GB limit. As you might have noticed, we've made some progress. How about you join the repo, check out the NanoKernel disassembly and the Wedge (my new C-based ConfigInfo-patching layer), and then tell me what you think. Just PM me your GitLab account when you have it.

Whatever you want to try, the repo will help. It lets you patch nearly anything, then wrap a Mac OS ROM file around it.