File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -62,4 +62,5 @@ See [firmware/](./firmware/) for build & flash instructions.
6262
6363- [ AssemblerGames] ( https://web.archive.org/web/20250327165519/https://assemblergames.org/viewtopic.php?p=870129 ) - first mentioning of FACET2 PCB
6464- [ FACET on xosft wiki] ( https://xboxoneresearch.github.io/wiki/hardware/facet/ ) - Technical documentation of FACET port
65+ - [ POST code on xosft wiki] ( https://xboxoneresearch.github.io/wiki/hardware/post/ ) - Original MAX6958A circuit and error codes
6566- [ libaspect2] ( https://github.com/xboxoneresearch/libaspect2 ) - Attempt at an open source library
Original file line number Diff line number Diff line change @@ -18,12 +18,14 @@ void Display_Init(void)
1818
1919const char * get_segment_name (uint8_t seg ) {
2020 switch (seg & 0xF0 ) {
21- case 0x70 :
22- return "OS" ;
23- case 0x30 :
24- return "SP" ;
2521 case 0x10 :
22+ return "CPU" ;
23+ case 0x30 :
24+ return "PSP" ;
25+ case 0x70 :
2626 return "SMC" ;
27+ case 0xF0 :
28+ return "OS" ;
2729 default :
2830 return "???" ;
2931 }
You can’t perform that action at this time.
0 commit comments