<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://xboxdevwiki.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Teufelchen</id>
		<title>xboxdevwiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://xboxdevwiki.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Teufelchen"/>
		<link rel="alternate" type="text/html" href="https://xboxdevwiki.net/Special:Contributions/Teufelchen"/>
		<updated>2026-04-26T07:36:25Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.28.0</generator>

	<entry>
		<id>https://xboxdevwiki.net/index.php?title=FATX&amp;diff=6967</id>
		<title>FATX</title>
		<link rel="alternate" type="text/html" href="https://xboxdevwiki.net/index.php?title=FATX&amp;diff=6967"/>
				<updated>2021-09-29T11:05:23Z</updated>
		
		<summary type="html">&lt;p&gt;Teufelchen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The file system used on the Xbox is [[FATX]], a variant of FAT16/32 developed by Microsoft specifically for the Xbox.&lt;br /&gt;
&lt;br /&gt;
== Implementations ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&lt;br /&gt;
|-&lt;br /&gt;
! Name&lt;br /&gt;
! Platform&lt;br /&gt;
! Read/Write&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| Official&lt;br /&gt;
| Xbox&lt;br /&gt;
| Read/Write&lt;br /&gt;
| Official FATX implementation by Microsoft&lt;br /&gt;
|-&lt;br /&gt;
| [https://github.com/mborgerson/fatx fatxfs]&lt;br /&gt;
| GNU/Linux, macOS&lt;br /&gt;
| Read-Only&lt;br /&gt;
| [https://en.wikipedia.org/wiki/Filesystem_in_Userspace FUSE]-based implementation&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Further Reading ==&lt;br /&gt;
* Most up to date: [https://hackmd.io/DXo0p8VnQLy3XQ7YR1Ny_w?view The FATX filesystem]&lt;br /&gt;
* Archive of the xbox-linux project from 2010: [https://web.archive.org/web/20100617022009/http://www.xbox-linux.org/wiki/Differences_between_Xbox_FATX_and_MS-DOS_FAT Differences between Xbox FATX and MS-DOS FAT]&lt;br /&gt;
* Private writings from 2002: [https://web.archive.org/web/20020617181617/http://www.tardis.ed.ac.uk:80/~lucien/computing/projects/xbox/XBOX-disk-layout.htm XBOX DISK LAYOUT v0.13]&lt;/div&gt;</summary>
		<author><name>Teufelchen</name></author>	</entry>

	<entry>
		<id>https://xboxdevwiki.net/index.php?title=Xtf&amp;diff=6867</id>
		<title>Xtf</title>
		<link rel="alternate" type="text/html" href="https://xboxdevwiki.net/index.php?title=Xtf&amp;diff=6867"/>
				<updated>2020-06-02T09:12:32Z</updated>
		
		<summary type="html">&lt;p&gt;Teufelchen: Fix 404 GitHub link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;XTF is a font file format used in the [[Dashboard]].&lt;br /&gt;
It became famous for being [[Exploits#Font hacks|exploited]].&lt;br /&gt;
&lt;br /&gt;
== Dashboard fonts ==&lt;br /&gt;
&lt;br /&gt;
The fonts were designed by [[Wikipedia:Steve Matteson|Steve Matteson]] for use in the Xbox [[Dashboard]] as well as for promotional materials.&lt;br /&gt;
&lt;br /&gt;
The XTF versions of these fonts contain 7365 glyphs each.&lt;br /&gt;
&lt;br /&gt;
=== Xbox.xtf ===&lt;br /&gt;
&lt;br /&gt;
[[File:Xbox-dashboard-font-specimen.png|thumb|200px|Xbox Font Specimen]]&lt;br /&gt;
&lt;br /&gt;
A monospace font.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;[[File:Xbox-xtf.png|800px|thumb|Xbox.xtf from [[Dashboard]].]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== XBox Book.xtf ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;[[File:XBox Book-xtf.png|800px|thumb|XBox Book.xtf from [[Dashboard]].]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== File format ==&lt;br /&gt;
&lt;br /&gt;
* 4 byte (magic)&lt;br /&gt;
* 4 byte (length prefix for following string)&lt;br /&gt;
* zero-terminated string with given buffer length (font-name)&lt;br /&gt;
* [https://msdn.microsoft.com/en-us/library/dd144956%28v=vs.85%29.aspx GLYPHSET] (List of supported glyphs)&lt;br /&gt;
* For each cGlyphsSupported:&lt;br /&gt;
** [https://msdn.microsoft.com/en-us/library/windows/desktop/dd374209(v=vs.85).aspx GLYPHMETRICSFLOAT] (Metrics for each glyph)&lt;br /&gt;
** 4 byte (Offset of glyph in file)&lt;br /&gt;
* For each GLYPHSET range&lt;br /&gt;
** For each glyph in this range&lt;br /&gt;
*** 2 byte (Index count)&lt;br /&gt;
*** 2 byte (Vertex count)&lt;br /&gt;
*** For each index:&lt;br /&gt;
**** 2 byte (Vertex index)&lt;br /&gt;
*** For each vertex:&lt;br /&gt;
**** 4 byte float (X-coordinate)&lt;br /&gt;
**** 4 byte float (Y-coordinate)&lt;br /&gt;
&lt;br /&gt;
The mesh data is stored as triangle list. 3 indices per triangle.&lt;br /&gt;
&lt;br /&gt;
{{FIXME|reason=Confirm these findings and format them better}}&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/XboxDev/xtf-converter A tool to convert XTF fonts to SVG fonts]&lt;br /&gt;
[[Category:Fileformats]]&lt;/div&gt;</summary>
		<author><name>Teufelchen</name></author>	</entry>

	<entry>
		<id>https://xboxdevwiki.net/index.php?title=Hardware_Revisions&amp;diff=6783</id>
		<title>Hardware Revisions</title>
		<link rel="alternate" type="text/html" href="https://xboxdevwiki.net/index.php?title=Hardware_Revisions&amp;diff=6783"/>
				<updated>2019-10-04T12:28:50Z</updated>
		
		<summary type="html">&lt;p&gt;Teufelchen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There were several different retail Xbox hardware revisions, which include the following:&lt;br /&gt;
&lt;br /&gt;
* Xbox 1.0&lt;br /&gt;
** USB controller is on a separate [[Motherboard#USB_Daughterboard|PCB]]&lt;br /&gt;
** GPU has a fan on the heat sink&lt;br /&gt;
* Xbox 1.1&lt;br /&gt;
** USB controller moved onto the motherboard&lt;br /&gt;
** Fan removed from the GPU heat sink&lt;br /&gt;
* Xbox 1.2&lt;br /&gt;
** TSOP Size now 256k (Initial Size 1024k)&lt;br /&gt;
** Updated Board Layout&lt;br /&gt;
** Switched to ATX Power connector&lt;br /&gt;
* Xbox 1.3&lt;br /&gt;
** Removed LFrame signal from LPC Port&lt;br /&gt;
* Xbox 1.4&lt;br /&gt;
** Updated Board Layout&lt;br /&gt;
** Switched to the &amp;quot;Focus&amp;quot; Video Encoder&lt;br /&gt;
* Xbox 1.5 &lt;br /&gt;
** 3.3v and GND removed from LPC&lt;br /&gt;
* Xbox 1.6&lt;br /&gt;
** New Board Layout with additional RAM Pads removed&lt;br /&gt;
** Removed data and power lines from LPC port&lt;br /&gt;
** Xyclops chip (includes ROM instead of flash = BIOS no longer flashable)&lt;br /&gt;
** Switched to the &amp;quot;XCalibur&amp;quot; Video Encoder&lt;br /&gt;
** Microsoft later switched to lower quality Hynix RAM. These Xboxes with non-Samsung RAM are sometimes referred to as 1.6b by the modding community.&lt;br /&gt;
&lt;br /&gt;
You can find more information about the hardware used in each revision below.&lt;br /&gt;
&lt;br /&gt;
== History of Xbox 1.5 ==&lt;br /&gt;
&lt;br /&gt;
There has been no conclusive evidence pointing to their existence, and all 1.5 sightings to date have turned out to be 1.4 boards.&lt;br /&gt;
They possibly never existed{{citation needed}}, but will otherwise be very rare. Production was halted and 1.4 was produced again{{citation needed|reason=Sooo.. do these exist or not?!}}.&lt;br /&gt;
&lt;br /&gt;
== Identifying ==&lt;br /&gt;
&lt;br /&gt;
While not definitive, here are some ways to help identify the revision of your Xbox.&lt;br /&gt;
&lt;br /&gt;
=== Manufacturing Details ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Date Range&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Revision&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Location&lt;br /&gt;
|-&lt;br /&gt;
| 01/2001–07/2002 || 1.0 || Hungary, Mexico&lt;br /&gt;
|-&lt;br /&gt;
| 08/2002-01/2003 || 1.1 || China, Mexico&lt;br /&gt;
|-&lt;br /&gt;
| 01/2003-03/2003 || 1.2 || China&lt;br /&gt;
|-&lt;br /&gt;
| 04/2003-07/2003 || 1.3 || China&lt;br /&gt;
|- &lt;br /&gt;
| 09/2003-03/2004 || 1.4,1.5 || China&lt;br /&gt;
|-&lt;br /&gt;
| 04/2004-09/2004 || 1.6 || China, Taiwan&lt;br /&gt;
|- &lt;br /&gt;
| 09/2004-08/2005 || 1.6b || China, Taiwan&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Serial Number ===&lt;br /&gt;
&lt;br /&gt;
The serial number looks like this:&lt;br /&gt;
&lt;br /&gt;
LNNNNNN YWWFF&lt;br /&gt;
&lt;br /&gt;
* L is the production line&lt;br /&gt;
* NNNNNN is the number produced that week&lt;br /&gt;
* Y is the last digit of the production year&lt;br /&gt;
* WW is the number of the week&lt;br /&gt;
* FF is the factory code&lt;br /&gt;
&lt;br /&gt;
Note, this table contradicts the previous table.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Factory&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Location&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Revision&lt;br /&gt;
|-&lt;br /&gt;
| 02 || Mexico || 1.0 or 1.1&lt;br /&gt;
|-&lt;br /&gt;
| 03 || Hungary || 1.0&lt;br /&gt;
|-&lt;br /&gt;
| 05 || China || 1.1 or later&lt;br /&gt;
|-&lt;br /&gt;
| 06 || Taiwan || 1.2 or later&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Serial Number&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Revision&lt;br /&gt;
|-&lt;br /&gt;
| LNNNNNN 20WFF || 1.0&lt;br /&gt;
|-&lt;br /&gt;
| LNNNNNN 21WFF || 1.0&lt;br /&gt;
|-&lt;br /&gt;
| LNNNNNN 23WFF || 1.0 or 1.1&lt;br /&gt;
|-&lt;br /&gt;
| LNNNNNN 24WFF || 1.1&lt;br /&gt;
|-&lt;br /&gt;
| LNNNNNN 25WFF || 1.1&lt;br /&gt;
|-&lt;br /&gt;
| LNNNNNN 30WFF || 1.2&lt;br /&gt;
|-&lt;br /&gt;
| LNNNNNN 31WFF || 1.3&lt;br /&gt;
|-&lt;br /&gt;
| LNNNNNN 32WFF || 1.3&lt;br /&gt;
|-&lt;br /&gt;
| LNNNNNN 33WFF || 1.4 or 1.5&lt;br /&gt;
|-&lt;br /&gt;
| LNNNNNN 42WFF || 1.6&lt;br /&gt;
|-&lt;br /&gt;
| LNNNNNN 43WFF || 1.6b&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== DVD Drive ===&lt;br /&gt;
&lt;br /&gt;
There are four retail drives known to be used by Microsoft in the retail version of the console.&lt;br /&gt;
Any Xbox DVD drive can be used in any retail Xbox.&lt;br /&gt;
&lt;br /&gt;
List of Xbox DVD Drive manufacturers&lt;br /&gt;
* Thomson (Xbox 1.0, 1.1)&lt;br /&gt;
* Philips (Xbox 1.1 and above)&lt;br /&gt;
* Samsung (Any)&lt;br /&gt;
* Hitachi-LG (8050L)(mainly 1.6?)&lt;br /&gt;
&lt;br /&gt;
[[File:Xbox_drivedetermination.png|Xbox DVD Drive determination]]&lt;br /&gt;
&lt;br /&gt;
==== THOMSON TGM600 ====&lt;br /&gt;
&lt;br /&gt;
The first manufacture is sadly also the worst of all Dvdrom drives manufactured for the original xbox.&lt;br /&gt;
It has a Cirrus Logic CL-CR3710-60EC-F as its main controller and a 8/3062 HD 64F3062F25 16bit H8/300H secondary samller MPU,at 25Mhz &lt;br /&gt;
Unkown sofar if there is external flash or if its inside the Cirrus Logic IC.&lt;br /&gt;
&lt;br /&gt;
==== SAMSUNG SDG605 ====&lt;br /&gt;
&lt;br /&gt;
The Samsung drive is a very popular DVDrom drive for its compatibility for most media types and better quality laser. There are 2 mayor revisions found for this manufacturer&lt;br /&gt;
* X00603-005  Plays CDR   &lt;br /&gt;
* X00603-006  Wont play CDR&lt;br /&gt;
&lt;br /&gt;
The DVDrom drive is using the MT1358E (MT1359E is the 360 Sata version) from Mediatek, and has a 39SF020A flashrom.&lt;br /&gt;
If the firmware from this drive is applied to a SAMSUNG 616T or 616F PC dvd drive it will behave as a Xbox one, modified hardware will allow for tray state and eject to work.&lt;br /&gt;
&lt;br /&gt;
==== PHILLIPS VAD6053 ====&lt;br /&gt;
&lt;br /&gt;
Also named: VAD6011/21 apear to have no brand or partnumber on its large main controller,might be Cirrus Logic based on its size and use of a Philips secondary smaller mcu. flash might be a  39SF020A  from SST. The laser ribbon cable connector is different for its various revisions, a detail one must take into account when swapping controller boards.&lt;br /&gt;
&lt;br /&gt;
There should be a tutorial on how to convert a PC dvdrom drive Pioneer 500M with the Philips firmware to be a Xbox dvdrom drive.&lt;br /&gt;
&lt;br /&gt;
==== HITACHI GDR-8050L ====&lt;br /&gt;
&lt;br /&gt;
The latest manufacture for the DVDrom drive probably used a Panasonic MN103S89FDA for its main controler, appears to have no external flashrom.&lt;br /&gt;
with this firmware and modified hardware for Eject and traystate, a LG GDR-8163B or LG DRD-8160B might act as a drop in replacement after altering either case.&lt;br /&gt;
&lt;br /&gt;
===Hitachi-LG GDR-8050L ===&lt;br /&gt;
This DVD-rom drive, most commonly found in Xbox 1.6 and 1.6b is capable of reading DVD-+R, DVD-RW and CDRW media, but fails to boot most CD-R discs source: [http://www.xbox-hq.com/html/article1535.html xbox-hq.com Hitachi-LG GDR-8050L DVD Drive In Xbox].&lt;br /&gt;
&lt;br /&gt;
on 30 January 2006 TheSpecialist posted at Xboxhacker.net that he successfully flashed a Hitachi drive to boot a copied game on an unmodded xbox: [https://web.archive.org/web/20080316154615/http://www.xboxhacker.net/index.php?option=com_smf&amp;amp;Itemid=33&amp;amp;topic=285.0 breakthrough: XBOX 1 firmware hacked !]&lt;br /&gt;
&lt;br /&gt;
=== Hard Drive ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&lt;br /&gt;
|-&lt;br /&gt;
! Revision&lt;br /&gt;
! Drive Manufacturer&lt;br /&gt;
! Drive Model Number&lt;br /&gt;
! Capacity&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
| Seagate&lt;br /&gt;
| ST310211A&lt;br /&gt;
| 10G&lt;br /&gt;
|-&lt;br /&gt;
| 1.0 (XB:2001-10-26 FF=02)&lt;br /&gt;
| Western Digital&lt;br /&gt;
| WD80EB-00CGH0&lt;br /&gt;
| 8G&lt;br /&gt;
|-&lt;br /&gt;
| 1.1 (XB:2001-10-29 FF=03)&lt;br /&gt;
| Western Digital&lt;br /&gt;
| WD80EB-28CGH1&lt;br /&gt;
| 8G&lt;br /&gt;
|-&lt;br /&gt;
| 1.2&lt;br /&gt;
| Western Digital&lt;br /&gt;
| WD80EB-28DFH2&lt;br /&gt;
| 8G&lt;br /&gt;
|-&lt;br /&gt;
| 1.3+&lt;br /&gt;
| Seagate&lt;br /&gt;
| ST10014ACE&lt;br /&gt;
| 10G&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Video encoder ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Video Chip&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Revision&lt;br /&gt;
|-&lt;br /&gt;
| Conexant || 1.0, 1.1, 1.2, 1.3&lt;br /&gt;
|-&lt;br /&gt;
| Focus || 1.4, 1.5&lt;br /&gt;
|-&lt;br /&gt;
| Xcalibur || 1.6&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== EEPROM ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Xbox Model&lt;br /&gt;
! Manufacturer&lt;br /&gt;
! Model&lt;br /&gt;
|-&lt;br /&gt;
| 1.4 (Others?)&lt;br /&gt;
| Catalyst&lt;br /&gt;
| CAT24WC02J&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== MCPX Version ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | MCPX Version&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Revision&lt;br /&gt;
|-&lt;br /&gt;
| 1.0 || 1.0&lt;br /&gt;
|-&lt;br /&gt;
| 1.1 || 1.1 - 1.6&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== BIOS Version ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Kernel Version&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Revision&lt;br /&gt;
|-&lt;br /&gt;
| 3944, 4034, 4036, 4627 || 1.0&lt;br /&gt;
|-&lt;br /&gt;
| 4817, 4972 || 1.1&lt;br /&gt;
|-&lt;br /&gt;
| 5101, 5713 || 1.2 - 1.5&lt;br /&gt;
|-&lt;br /&gt;
| 5838 || 1.6&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.informit.com/articles/article.aspx?p=367210&amp;amp;seqNum=2 InformIT Methods of Identification]&lt;br /&gt;
* [http://www.informit.com/articles/article.aspx?p=367210 InformIT Identifying your Xbox Revision]&lt;/div&gt;</summary>
		<author><name>Teufelchen</name></author>	</entry>

	<entry>
		<id>https://xboxdevwiki.net/index.php?title=Power_Supply&amp;diff=6782</id>
		<title>Power Supply</title>
		<link rel="alternate" type="text/html" href="https://xboxdevwiki.net/index.php?title=Power_Supply&amp;diff=6782"/>
				<updated>2019-10-03T14:11:18Z</updated>
		
		<summary type="html">&lt;p&gt;Teufelchen: /* Related links */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;It's either a Foxlink{{citation needed}} or Delta Electronics power supply for most xboxes.&lt;br /&gt;
Some are rumored to be shipped with a Minebea brand and 1.6 xboxes are found with a &amp;quot;tuscany&amp;quot; made probably by Samsung.&lt;br /&gt;
&lt;br /&gt;
On a 1.0 xbox supply, there seems to be 2{{citation needed|reason=2 per region, or 2 overall? and, what about foxlink?}} types for the US 120V and EU 240V market.&lt;br /&gt;
&lt;br /&gt;
The standby voltage powers the [[SMC]] which handles turning on and off the system.&lt;br /&gt;
The Xbox supply needs a voltage (3V3?) on it's power-on line to leave the standby mode.&lt;br /&gt;
This results in the other voltages being supplied.&lt;br /&gt;
&lt;br /&gt;
=== Delta Electronics ===&lt;br /&gt;
The marks are on the PCB with a check next to them:&lt;br /&gt;
* Delta Electronics DPSN-96-AP-1 should be the EU 240V one{{citation needed}}&lt;br /&gt;
* Delta Electronics DPSN-96-AP is the US 120V one&lt;br /&gt;
&lt;br /&gt;
There is a link J11 under CR1 (right side of the coil under it) that might make the difference between 120V and 240V.&lt;br /&gt;
It also seems that the Bridge rectifier is bigger on the US models.&lt;br /&gt;
This could make sense as it has to handle double the current. So, before experimenting with this it might be worth to check if the installed type can handle 2.3 amps.&lt;br /&gt;
&lt;br /&gt;
The rated output currents are also noted on the PCB&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| Power Rail&lt;br /&gt;
| Rated Current&lt;br /&gt;
|-&lt;br /&gt;
| 3.3V Standby&lt;br /&gt;
| 0.075A&lt;br /&gt;
|-&lt;br /&gt;
| 3.3V&lt;br /&gt;
| 4.8A&lt;br /&gt;
|-&lt;br /&gt;
| 5V&lt;br /&gt;
| 13.2A&lt;br /&gt;
|-&lt;br /&gt;
| 12V&lt;br /&gt;
| 1.2A&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Foxlink Technology LTD ===&lt;br /&gt;
&lt;br /&gt;
{{FIXME|reason=I don't own any US xboxes to compare US foxlinks with}}On the lower heatsink, there is a sticker with the following markings and versions:&lt;br /&gt;
* MODEL: FTPS-0001 REV:B {{citation needed}} (120V)&lt;br /&gt;
* MODEL: FTPS-0002 REV:B (from a 2002 PAL (240V))&lt;br /&gt;
* MODEL: FTPS-0002 REV:H (from a 2003 PAL (240V))&lt;br /&gt;
* MODEL: FTPS-0002 REV:G {{citation needed}} (240V)&lt;br /&gt;
* MODEL: FTPS-0007 REV:B {{citation needed}} (120V) (are these after the powercord recall?)&lt;br /&gt;
* MODEL: FTPS-0007 REV:D {{citation needed}} (120V) (are these after the powercord recall?)&lt;br /&gt;
&lt;br /&gt;
The rated output currents are also noted on the sticker&lt;br /&gt;
&lt;br /&gt;
96W Max output power&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| Power Rail&lt;br /&gt;
| Rated Current&lt;br /&gt;
|-&lt;br /&gt;
| 3.3V Standby&lt;br /&gt;
| 0.045A&lt;br /&gt;
|-&lt;br /&gt;
| 3.3V&lt;br /&gt;
| 4.8A&lt;br /&gt;
|-&lt;br /&gt;
| 5V&lt;br /&gt;
| 13.2A&lt;br /&gt;
|-&lt;br /&gt;
| 12V&lt;br /&gt;
| 1.2A&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Powercord recall ====&lt;br /&gt;
&lt;br /&gt;
Microsoft started an powercord recall, or more like a replacement program [https://web.archive.org/web/20050301093947/http://www.xbox.com:80/en-US/news/0502/powercordannouncement.htm xbox.com]for what appeared to be Foxlink powersupplies having a bad powerplug connector on the back of the console and where installed in 1.0 and 1.1 Xboxes.{{citation needed}}.&lt;br /&gt;
Microsoft tried to resolve this by offering free replacement powercords and advising to trow out the old ones. [https://web.archive.org/web/20120722175134/http://www.xbox-scene.com/xbox1data/sep/EEpAEAylAluZlwSlOJ.php More to the power cord replacement than meets the eye?]{{FIXME|reason=why is this link here and where could / should it be instead? I think it's misplaced here}}.&lt;br /&gt;
&lt;br /&gt;
From the Microsoft powercord replacement FAQ:&lt;br /&gt;
&lt;br /&gt;
: '''Does my console require a replacement cord?'''&lt;br /&gt;
: If it was manufactured before October 23, 2003, your console requires a replacement cord (except for consoles purchased in Continental Europe, where consoles manufactured prior to January 13, 2004 require a replacement cord). Consoles manufactured after October 23, 2003 (after January 13, 2004 for consoles purchased in Continental Europe) do not require replacement cords because design improvements to the cord and console already protect against the problems that are addressed by the replacement cords.[https://web.archive.org/web/20050223041403/http://replacements.webprogram.com:80/en-us/faqs.asp#Q-7]&lt;br /&gt;
&lt;br /&gt;
The old page describing how to order has been archived here: [https://web.archive.org/web/20050223060900/http://replacements.webprogram.com:80/en-us/programoverview.asp] &lt;br /&gt;
One would either receive a thicker but very similar powercord or an actual [https://simple.wikipedia.org/wiki/GFCI GFI] (Ground Fault Circuit Interrupter). a online form would then be used to determine which type of cable you receive by means of serial number. {{FIXME|reason=I cant seem to find a source for these details yet, but I personally requested 2, 1 for my own Xbox (a 1.4, with a confirmed Delta. never replaced it.) and received a normal cable (EU). A friends xbox was older, 1.1/1.2?) and we got a european fusebox brick for his. looks like the UK one, but with the Benelux plug. It was all for free in Europe I remember the part number on my normal cable to be different (higher) for the newer one... ill check if I have it in the original box still}}&lt;br /&gt;
&lt;br /&gt;
===== AFCI =====&lt;br /&gt;
&lt;br /&gt;
A video of whats inside an european (UK) &amp;quot;AFCI&amp;quot; [https://www.youtube.com/watch?v=C0wQikAO-yA]&lt;br /&gt;
&lt;br /&gt;
An european AFCI ordered from MS for free had the following on the bottom label.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| Part number&lt;br /&gt;
| X800925-100&lt;br /&gt;
|- &lt;br /&gt;
|&lt;br /&gt;
| 200-240V~,50/60HZ, 610mA&lt;br /&gt;
|-&lt;br /&gt;
| MFG Code&lt;br /&gt;
| DN0855&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The cable that is wired to the AFCI has the following markings:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! top&lt;br /&gt;
! bottom&lt;br /&gt;
|-&lt;br /&gt;
| JI-HAW&lt;br /&gt;
| JHT-031&lt;br /&gt;
|}&lt;br /&gt;
===== Old and New cords =====&lt;br /&gt;
&lt;br /&gt;
The replacement cable has the following markings:{{citation needed}}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! top&lt;br /&gt;
! bottom&lt;br /&gt;
|-&lt;br /&gt;
| JHT-031&lt;br /&gt;
| {{citation needed}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The older cable that needed replacement was:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! top&lt;br /&gt;
! bottom&lt;br /&gt;
|-&lt;br /&gt;
| NITTO SS&lt;br /&gt;
| W41-27854&lt;br /&gt;
|-&lt;br /&gt;
| JHT-013&lt;br /&gt;
| N15905&lt;br /&gt;
|-&lt;br /&gt;
| JI-HAW&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| E147422&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
Presumably this one doesn't come with tighter tolerances.&lt;br /&gt;
&lt;br /&gt;
=== Samsung &amp;quot;TUSCANY&amp;quot;===&lt;br /&gt;
Found in 1.6 xboxes and seems to be made by Samsung (or atleast the main transformer is, which also has the detail label on it)&lt;br /&gt;
{{FIXME|reason=There are TUSCANY powersuplies in some 1.6 xboxes?}}&lt;br /&gt;
* PSCD101301A&lt;br /&gt;
&lt;br /&gt;
=== Minebea ===&lt;br /&gt;
{{FIXME|reason=There are in the UK, Minebea powersuplies in some xboxes?}}&lt;br /&gt;
&lt;br /&gt;
* MS001A096EMJ&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
!Minebea Electronics UK LTD &lt;br /&gt;
!(circuit board)&lt;br /&gt;
|-&lt;br /&gt;
|DWG No.&lt;br /&gt;
|1 R26PA-SE300393 REV: E&lt;br /&gt;
|-&lt;br /&gt;
|PART No.&lt;br /&gt;
|1 1612100002&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|0234-3&lt;br /&gt;
|-&lt;br /&gt;
!Sticker: &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|NMB Technologies Corp&lt;br /&gt;
|Power Supply Division&lt;br /&gt;
|-&lt;br /&gt;
|Made in &lt;br /&gt;
|Thailand&lt;br /&gt;
|-&lt;br /&gt;
|Model:&lt;br /&gt;
|MS001A096EMJ&lt;br /&gt;
|-&lt;br /&gt;
|REV:&lt;br /&gt;
|08&lt;br /&gt;
|-&lt;br /&gt;
|AC INPUT:100-120V&lt;br /&gt;
|2A 47-63Hz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Connector pinout ==&lt;br /&gt;
&lt;br /&gt;
=== Xbox 1.0 and 1.1 ===&lt;br /&gt;
&lt;br /&gt;
The power supply connector for 1.0 and 1.1 is a single column of pins described by the following chart. Pin 1 is the connector pin closest to the back of the Xbox.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Pin || Usage&lt;br /&gt;
|-&lt;br /&gt;
| Pin 1 || PowOK&lt;br /&gt;
|-&lt;br /&gt;
| Pin 2 || PowON&lt;br /&gt;
|-&lt;br /&gt;
| Pin 3 || GND&lt;br /&gt;
|-&lt;br /&gt;
| Pin 4 || GND&lt;br /&gt;
|-&lt;br /&gt;
| Pin 5 || GND&lt;br /&gt;
|-&lt;br /&gt;
| Pin 6 || GND&lt;br /&gt;
|-&lt;br /&gt;
| Pin 7 || +3.3V Standby&lt;br /&gt;
|-&lt;br /&gt;
| Pin 8 || +3.3V&lt;br /&gt;
|-&lt;br /&gt;
| Pin 9 || +5V&lt;br /&gt;
|-&lt;br /&gt;
| Pin 10 || +5V&lt;br /&gt;
|-&lt;br /&gt;
| Pin 11 || +5V&lt;br /&gt;
|-&lt;br /&gt;
| Pin 12 || +12V&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Xbox 1.2, 1.3, 1.4, and 1.5 ===&lt;br /&gt;
The power supply connector for the 1.2, 1.3, 1.4, and 1.5 xboxes is two columns. Pin 1, Column 1 being the top left pin. Pin 1, Column 2 being the top right pin. The top being the side closest to the back of the Xbox.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Pin Column 1 || Usage || Pin Column 2 || Usage&lt;br /&gt;
|-&lt;br /&gt;
| Pin 1 || PowOK || Pin 1 || PowON&lt;br /&gt;
|-&lt;br /&gt;
| Pin 2 || GND || Pin 2 || GND&lt;br /&gt;
|-&lt;br /&gt;
| Pin 3 || None || Pin 3 || +3.3V&lt;br /&gt;
|-&lt;br /&gt;
| Pin 4 || +3.3V || Pin 4 || None&lt;br /&gt;
|-&lt;br /&gt;
| Pin 5 || None || Pin 5 || GND&lt;br /&gt;
|-&lt;br /&gt;
| Pin 6 || GND || Pin 6 || +3.3V Standby&lt;br /&gt;
|-&lt;br /&gt;
| Pin 7 || None || Pin 7 || GND&lt;br /&gt;
|-&lt;br /&gt;
| Pin 8 || +5V || Pin 8 || +5V&lt;br /&gt;
|-&lt;br /&gt;
| Pin 9 || +5V || Pin 9 || None&lt;br /&gt;
|-&lt;br /&gt;
| Pin 10 || +5V || Pin 10 || +12V&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Xbox 1.6 ===&lt;br /&gt;
The connector for the 1.6 Xbox is two columns. Pin 1, Column 1 being the top left pin. Pin 1, Column 2 being the top right pin. The top being the side closest to the back of the Xbox. This is the same connector as a 1.2, 1.3, 1.4, and 1.5 xboxes, with a different pinout.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Pin Column 1 || Usage || Pin Column 2 || Usage&lt;br /&gt;
|-&lt;br /&gt;
| Pin 1 || PowOK (3.3V Standby) || Pin 1 || PowON (3.3V)&lt;br /&gt;
|-&lt;br /&gt;
| Pin 2 || GND || Pin 2 || GND&lt;br /&gt;
|-&lt;br /&gt;
| Pin 3 || None || Pin 3 || None&lt;br /&gt;
|-&lt;br /&gt;
| Pin 4 || None || Pin 4 || None&lt;br /&gt;
|-&lt;br /&gt;
| Pin 5 || GND || Pin 5 || GND&lt;br /&gt;
|-&lt;br /&gt;
| Pin 6 || GND || Pin 6 || +5V (0.12V Standby)&lt;br /&gt;
|-&lt;br /&gt;
| Pin 7 || GND || Pin 7 || GND&lt;br /&gt;
|-&lt;br /&gt;
| Pin 8 || +5V Standby || Pin 8 || +5V Standby&lt;br /&gt;
|-&lt;br /&gt;
| Pin 9 || +5V Standby || Pin 9 || GND&lt;br /&gt;
|-&lt;br /&gt;
| Pin 10 || +5V Standby || Pin 10 || +12V (0.532V Standby)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Real world power usage ==&lt;br /&gt;
&lt;br /&gt;
DC amperage as measured on with a Fluke 376 clamp meter around the PSU to Motherboard connections. HDD not included in measurements and the DVD drive and controller rumble were not used.&lt;br /&gt;
AC wattage measured at 120v 60Hz using a 'KILL A WATT' meter includes all system components but DVD drive and controller rumble were not used.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! XBOX V1.0 || Power off || Unleash X || Halo 2 Menu || DolphinClassic || Maximum Observed&lt;br /&gt;
|-&lt;br /&gt;
| GND || 0A || 5.9A || 5.8A || 6.0A || 6.2A&lt;br /&gt;
|-&lt;br /&gt;
| 3.3v Standby || 0.2A || 0.3A || 0.3A || 0.3A || 0.3A&lt;br /&gt;
|-&lt;br /&gt;
| 3.3v || 0A || 2.5A || 2.2A || 2.7A || 2.7A&lt;br /&gt;
|-&lt;br /&gt;
| 5v || 0A || 7.1A || 7.2A || 7.0A || 7.2A&lt;br /&gt;
|-&lt;br /&gt;
| 12v || 0A || 0.3A || 0.4A || 0.4A || 0.4A&lt;br /&gt;
|-&lt;br /&gt;
| ~120VAC || 2.1W || 67.4W || 65.3W || 68.5W || 68.5W&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! XBOX V1.3 || Power off || Unleash X || Halo 2 Menu || DolphinClassic || Maximum Observed&lt;br /&gt;
|-&lt;br /&gt;
| GND || 0A || 8.5A || 8.1A || 8.6A || 8.6A&lt;br /&gt;
|-&lt;br /&gt;
| 3.3v Standby || 0.4A || 0.5A || 0.5A || 0.5A || 0.5A&lt;br /&gt;
|-&lt;br /&gt;
| 3.3v || 0A || 3.7A || 2.9A || 3.7A || 3.7A&lt;br /&gt;
|-&lt;br /&gt;
| 5v || 0A || 6.4A || 6.7A || 6.5A || 6.7A&lt;br /&gt;
|-&lt;br /&gt;
| 12v || 0A || 0.2A || 0.3A || 0.2A || 0.3A&lt;br /&gt;
|-&lt;br /&gt;
| ~120VAC || 1.2W || 64.6W || 62.2W || 64.3W || 64.6W&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
TODO: Measure other hardware revisions and more usage scenarios.&lt;br /&gt;
&lt;br /&gt;
== Related links ==&lt;br /&gt;
&lt;br /&gt;
* [https://www.youtube.com/watch?v=LBoF1e5YDdQ EEVblog takes a look inside the replacement coord as well as the power supply itself]&lt;br /&gt;
* [http://brandonw.net/consoles/xbox/ Describes how to turn an ATX Power-Supply to Xbox PSU]&lt;br /&gt;
* [https://web.archive.org/web/20060421203325/https://msmvps.com/blogs/matthewsoft/archive/2005/02/17/36238.aspx Powercord recall blog with exacter cable numbers]&lt;/div&gt;</summary>
		<author><name>Teufelchen</name></author>	</entry>

	<entry>
		<id>https://xboxdevwiki.net/index.php?title=Power_Supply&amp;diff=6781</id>
		<title>Power Supply</title>
		<link rel="alternate" type="text/html" href="https://xboxdevwiki.net/index.php?title=Power_Supply&amp;diff=6781"/>
				<updated>2019-10-03T14:10:56Z</updated>
		
		<summary type="html">&lt;p&gt;Teufelchen: /* Related links */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;It's either a Foxlink{{citation needed}} or Delta Electronics power supply for most xboxes.&lt;br /&gt;
Some are rumored to be shipped with a Minebea brand and 1.6 xboxes are found with a &amp;quot;tuscany&amp;quot; made probably by Samsung.&lt;br /&gt;
&lt;br /&gt;
On a 1.0 xbox supply, there seems to be 2{{citation needed|reason=2 per region, or 2 overall? and, what about foxlink?}} types for the US 120V and EU 240V market.&lt;br /&gt;
&lt;br /&gt;
The standby voltage powers the [[SMC]] which handles turning on and off the system.&lt;br /&gt;
The Xbox supply needs a voltage (3V3?) on it's power-on line to leave the standby mode.&lt;br /&gt;
This results in the other voltages being supplied.&lt;br /&gt;
&lt;br /&gt;
=== Delta Electronics ===&lt;br /&gt;
The marks are on the PCB with a check next to them:&lt;br /&gt;
* Delta Electronics DPSN-96-AP-1 should be the EU 240V one{{citation needed}}&lt;br /&gt;
* Delta Electronics DPSN-96-AP is the US 120V one&lt;br /&gt;
&lt;br /&gt;
There is a link J11 under CR1 (right side of the coil under it) that might make the difference between 120V and 240V.&lt;br /&gt;
It also seems that the Bridge rectifier is bigger on the US models.&lt;br /&gt;
This could make sense as it has to handle double the current. So, before experimenting with this it might be worth to check if the installed type can handle 2.3 amps.&lt;br /&gt;
&lt;br /&gt;
The rated output currents are also noted on the PCB&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| Power Rail&lt;br /&gt;
| Rated Current&lt;br /&gt;
|-&lt;br /&gt;
| 3.3V Standby&lt;br /&gt;
| 0.075A&lt;br /&gt;
|-&lt;br /&gt;
| 3.3V&lt;br /&gt;
| 4.8A&lt;br /&gt;
|-&lt;br /&gt;
| 5V&lt;br /&gt;
| 13.2A&lt;br /&gt;
|-&lt;br /&gt;
| 12V&lt;br /&gt;
| 1.2A&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Foxlink Technology LTD ===&lt;br /&gt;
&lt;br /&gt;
{{FIXME|reason=I don't own any US xboxes to compare US foxlinks with}}On the lower heatsink, there is a sticker with the following markings and versions:&lt;br /&gt;
* MODEL: FTPS-0001 REV:B {{citation needed}} (120V)&lt;br /&gt;
* MODEL: FTPS-0002 REV:B (from a 2002 PAL (240V))&lt;br /&gt;
* MODEL: FTPS-0002 REV:H (from a 2003 PAL (240V))&lt;br /&gt;
* MODEL: FTPS-0002 REV:G {{citation needed}} (240V)&lt;br /&gt;
* MODEL: FTPS-0007 REV:B {{citation needed}} (120V) (are these after the powercord recall?)&lt;br /&gt;
* MODEL: FTPS-0007 REV:D {{citation needed}} (120V) (are these after the powercord recall?)&lt;br /&gt;
&lt;br /&gt;
The rated output currents are also noted on the sticker&lt;br /&gt;
&lt;br /&gt;
96W Max output power&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| Power Rail&lt;br /&gt;
| Rated Current&lt;br /&gt;
|-&lt;br /&gt;
| 3.3V Standby&lt;br /&gt;
| 0.045A&lt;br /&gt;
|-&lt;br /&gt;
| 3.3V&lt;br /&gt;
| 4.8A&lt;br /&gt;
|-&lt;br /&gt;
| 5V&lt;br /&gt;
| 13.2A&lt;br /&gt;
|-&lt;br /&gt;
| 12V&lt;br /&gt;
| 1.2A&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Powercord recall ====&lt;br /&gt;
&lt;br /&gt;
Microsoft started an powercord recall, or more like a replacement program [https://web.archive.org/web/20050301093947/http://www.xbox.com:80/en-US/news/0502/powercordannouncement.htm xbox.com]for what appeared to be Foxlink powersupplies having a bad powerplug connector on the back of the console and where installed in 1.0 and 1.1 Xboxes.{{citation needed}}.&lt;br /&gt;
Microsoft tried to resolve this by offering free replacement powercords and advising to trow out the old ones. [https://web.archive.org/web/20120722175134/http://www.xbox-scene.com/xbox1data/sep/EEpAEAylAluZlwSlOJ.php More to the power cord replacement than meets the eye?]{{FIXME|reason=why is this link here and where could / should it be instead? I think it's misplaced here}}.&lt;br /&gt;
&lt;br /&gt;
From the Microsoft powercord replacement FAQ:&lt;br /&gt;
&lt;br /&gt;
: '''Does my console require a replacement cord?'''&lt;br /&gt;
: If it was manufactured before October 23, 2003, your console requires a replacement cord (except for consoles purchased in Continental Europe, where consoles manufactured prior to January 13, 2004 require a replacement cord). Consoles manufactured after October 23, 2003 (after January 13, 2004 for consoles purchased in Continental Europe) do not require replacement cords because design improvements to the cord and console already protect against the problems that are addressed by the replacement cords.[https://web.archive.org/web/20050223041403/http://replacements.webprogram.com:80/en-us/faqs.asp#Q-7]&lt;br /&gt;
&lt;br /&gt;
The old page describing how to order has been archived here: [https://web.archive.org/web/20050223060900/http://replacements.webprogram.com:80/en-us/programoverview.asp] &lt;br /&gt;
One would either receive a thicker but very similar powercord or an actual [https://simple.wikipedia.org/wiki/GFCI GFI] (Ground Fault Circuit Interrupter). a online form would then be used to determine which type of cable you receive by means of serial number. {{FIXME|reason=I cant seem to find a source for these details yet, but I personally requested 2, 1 for my own Xbox (a 1.4, with a confirmed Delta. never replaced it.) and received a normal cable (EU). A friends xbox was older, 1.1/1.2?) and we got a european fusebox brick for his. looks like the UK one, but with the Benelux plug. It was all for free in Europe I remember the part number on my normal cable to be different (higher) for the newer one... ill check if I have it in the original box still}}&lt;br /&gt;
&lt;br /&gt;
===== AFCI =====&lt;br /&gt;
&lt;br /&gt;
A video of whats inside an european (UK) &amp;quot;AFCI&amp;quot; [https://www.youtube.com/watch?v=C0wQikAO-yA]&lt;br /&gt;
&lt;br /&gt;
An european AFCI ordered from MS for free had the following on the bottom label.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| Part number&lt;br /&gt;
| X800925-100&lt;br /&gt;
|- &lt;br /&gt;
|&lt;br /&gt;
| 200-240V~,50/60HZ, 610mA&lt;br /&gt;
|-&lt;br /&gt;
| MFG Code&lt;br /&gt;
| DN0855&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The cable that is wired to the AFCI has the following markings:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! top&lt;br /&gt;
! bottom&lt;br /&gt;
|-&lt;br /&gt;
| JI-HAW&lt;br /&gt;
| JHT-031&lt;br /&gt;
|}&lt;br /&gt;
===== Old and New cords =====&lt;br /&gt;
&lt;br /&gt;
The replacement cable has the following markings:{{citation needed}}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! top&lt;br /&gt;
! bottom&lt;br /&gt;
|-&lt;br /&gt;
| JHT-031&lt;br /&gt;
| {{citation needed}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The older cable that needed replacement was:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! top&lt;br /&gt;
! bottom&lt;br /&gt;
|-&lt;br /&gt;
| NITTO SS&lt;br /&gt;
| W41-27854&lt;br /&gt;
|-&lt;br /&gt;
| JHT-013&lt;br /&gt;
| N15905&lt;br /&gt;
|-&lt;br /&gt;
| JI-HAW&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| E147422&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
Presumably this one doesn't come with tighter tolerances.&lt;br /&gt;
&lt;br /&gt;
=== Samsung &amp;quot;TUSCANY&amp;quot;===&lt;br /&gt;
Found in 1.6 xboxes and seems to be made by Samsung (or atleast the main transformer is, which also has the detail label on it)&lt;br /&gt;
{{FIXME|reason=There are TUSCANY powersuplies in some 1.6 xboxes?}}&lt;br /&gt;
* PSCD101301A&lt;br /&gt;
&lt;br /&gt;
=== Minebea ===&lt;br /&gt;
{{FIXME|reason=There are in the UK, Minebea powersuplies in some xboxes?}}&lt;br /&gt;
&lt;br /&gt;
* MS001A096EMJ&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
!Minebea Electronics UK LTD &lt;br /&gt;
!(circuit board)&lt;br /&gt;
|-&lt;br /&gt;
|DWG No.&lt;br /&gt;
|1 R26PA-SE300393 REV: E&lt;br /&gt;
|-&lt;br /&gt;
|PART No.&lt;br /&gt;
|1 1612100002&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|0234-3&lt;br /&gt;
|-&lt;br /&gt;
!Sticker: &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|NMB Technologies Corp&lt;br /&gt;
|Power Supply Division&lt;br /&gt;
|-&lt;br /&gt;
|Made in &lt;br /&gt;
|Thailand&lt;br /&gt;
|-&lt;br /&gt;
|Model:&lt;br /&gt;
|MS001A096EMJ&lt;br /&gt;
|-&lt;br /&gt;
|REV:&lt;br /&gt;
|08&lt;br /&gt;
|-&lt;br /&gt;
|AC INPUT:100-120V&lt;br /&gt;
|2A 47-63Hz&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Connector pinout ==&lt;br /&gt;
&lt;br /&gt;
=== Xbox 1.0 and 1.1 ===&lt;br /&gt;
&lt;br /&gt;
The power supply connector for 1.0 and 1.1 is a single column of pins described by the following chart. Pin 1 is the connector pin closest to the back of the Xbox.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Pin || Usage&lt;br /&gt;
|-&lt;br /&gt;
| Pin 1 || PowOK&lt;br /&gt;
|-&lt;br /&gt;
| Pin 2 || PowON&lt;br /&gt;
|-&lt;br /&gt;
| Pin 3 || GND&lt;br /&gt;
|-&lt;br /&gt;
| Pin 4 || GND&lt;br /&gt;
|-&lt;br /&gt;
| Pin 5 || GND&lt;br /&gt;
|-&lt;br /&gt;
| Pin 6 || GND&lt;br /&gt;
|-&lt;br /&gt;
| Pin 7 || +3.3V Standby&lt;br /&gt;
|-&lt;br /&gt;
| Pin 8 || +3.3V&lt;br /&gt;
|-&lt;br /&gt;
| Pin 9 || +5V&lt;br /&gt;
|-&lt;br /&gt;
| Pin 10 || +5V&lt;br /&gt;
|-&lt;br /&gt;
| Pin 11 || +5V&lt;br /&gt;
|-&lt;br /&gt;
| Pin 12 || +12V&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Xbox 1.2, 1.3, 1.4, and 1.5 ===&lt;br /&gt;
The power supply connector for the 1.2, 1.3, 1.4, and 1.5 xboxes is two columns. Pin 1, Column 1 being the top left pin. Pin 1, Column 2 being the top right pin. The top being the side closest to the back of the Xbox.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Pin Column 1 || Usage || Pin Column 2 || Usage&lt;br /&gt;
|-&lt;br /&gt;
| Pin 1 || PowOK || Pin 1 || PowON&lt;br /&gt;
|-&lt;br /&gt;
| Pin 2 || GND || Pin 2 || GND&lt;br /&gt;
|-&lt;br /&gt;
| Pin 3 || None || Pin 3 || +3.3V&lt;br /&gt;
|-&lt;br /&gt;
| Pin 4 || +3.3V || Pin 4 || None&lt;br /&gt;
|-&lt;br /&gt;
| Pin 5 || None || Pin 5 || GND&lt;br /&gt;
|-&lt;br /&gt;
| Pin 6 || GND || Pin 6 || +3.3V Standby&lt;br /&gt;
|-&lt;br /&gt;
| Pin 7 || None || Pin 7 || GND&lt;br /&gt;
|-&lt;br /&gt;
| Pin 8 || +5V || Pin 8 || +5V&lt;br /&gt;
|-&lt;br /&gt;
| Pin 9 || +5V || Pin 9 || None&lt;br /&gt;
|-&lt;br /&gt;
| Pin 10 || +5V || Pin 10 || +12V&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Xbox 1.6 ===&lt;br /&gt;
The connector for the 1.6 Xbox is two columns. Pin 1, Column 1 being the top left pin. Pin 1, Column 2 being the top right pin. The top being the side closest to the back of the Xbox. This is the same connector as a 1.2, 1.3, 1.4, and 1.5 xboxes, with a different pinout.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Pin Column 1 || Usage || Pin Column 2 || Usage&lt;br /&gt;
|-&lt;br /&gt;
| Pin 1 || PowOK (3.3V Standby) || Pin 1 || PowON (3.3V)&lt;br /&gt;
|-&lt;br /&gt;
| Pin 2 || GND || Pin 2 || GND&lt;br /&gt;
|-&lt;br /&gt;
| Pin 3 || None || Pin 3 || None&lt;br /&gt;
|-&lt;br /&gt;
| Pin 4 || None || Pin 4 || None&lt;br /&gt;
|-&lt;br /&gt;
| Pin 5 || GND || Pin 5 || GND&lt;br /&gt;
|-&lt;br /&gt;
| Pin 6 || GND || Pin 6 || +5V (0.12V Standby)&lt;br /&gt;
|-&lt;br /&gt;
| Pin 7 || GND || Pin 7 || GND&lt;br /&gt;
|-&lt;br /&gt;
| Pin 8 || +5V Standby || Pin 8 || +5V Standby&lt;br /&gt;
|-&lt;br /&gt;
| Pin 9 || +5V Standby || Pin 9 || GND&lt;br /&gt;
|-&lt;br /&gt;
| Pin 10 || +5V Standby || Pin 10 || +12V (0.532V Standby)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Real world power usage ==&lt;br /&gt;
&lt;br /&gt;
DC amperage as measured on with a Fluke 376 clamp meter around the PSU to Motherboard connections. HDD not included in measurements and the DVD drive and controller rumble were not used.&lt;br /&gt;
AC wattage measured at 120v 60Hz using a 'KILL A WATT' meter includes all system components but DVD drive and controller rumble were not used.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! XBOX V1.0 || Power off || Unleash X || Halo 2 Menu || DolphinClassic || Maximum Observed&lt;br /&gt;
|-&lt;br /&gt;
| GND || 0A || 5.9A || 5.8A || 6.0A || 6.2A&lt;br /&gt;
|-&lt;br /&gt;
| 3.3v Standby || 0.2A || 0.3A || 0.3A || 0.3A || 0.3A&lt;br /&gt;
|-&lt;br /&gt;
| 3.3v || 0A || 2.5A || 2.2A || 2.7A || 2.7A&lt;br /&gt;
|-&lt;br /&gt;
| 5v || 0A || 7.1A || 7.2A || 7.0A || 7.2A&lt;br /&gt;
|-&lt;br /&gt;
| 12v || 0A || 0.3A || 0.4A || 0.4A || 0.4A&lt;br /&gt;
|-&lt;br /&gt;
| ~120VAC || 2.1W || 67.4W || 65.3W || 68.5W || 68.5W&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! XBOX V1.3 || Power off || Unleash X || Halo 2 Menu || DolphinClassic || Maximum Observed&lt;br /&gt;
|-&lt;br /&gt;
| GND || 0A || 8.5A || 8.1A || 8.6A || 8.6A&lt;br /&gt;
|-&lt;br /&gt;
| 3.3v Standby || 0.4A || 0.5A || 0.5A || 0.5A || 0.5A&lt;br /&gt;
|-&lt;br /&gt;
| 3.3v || 0A || 3.7A || 2.9A || 3.7A || 3.7A&lt;br /&gt;
|-&lt;br /&gt;
| 5v || 0A || 6.4A || 6.7A || 6.5A || 6.7A&lt;br /&gt;
|-&lt;br /&gt;
| 12v || 0A || 0.2A || 0.3A || 0.2A || 0.3A&lt;br /&gt;
|-&lt;br /&gt;
| ~120VAC || 1.2W || 64.6W || 62.2W || 64.3W || 64.6W&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
TODO: Measure other hardware revisions and more usage scenarios.&lt;br /&gt;
&lt;br /&gt;
== Related links ==&lt;br /&gt;
&lt;br /&gt;
* [https://www.youtube.com/watch?v=LBoF1e5YDdQ Eevblog takes a look inside the replacement coord as well as the power supply itself]&lt;br /&gt;
* [http://brandonw.net/consoles/xbox/ Describes how to turn an ATX Power-Supply to Xbox PSU]&lt;br /&gt;
* [https://web.archive.org/web/20060421203325/https://msmvps.com/blogs/matthewsoft/archive/2005/02/17/36238.aspx Powercord recall blog with exacter cable numbers]&lt;/div&gt;</summary>
		<author><name>Teufelchen</name></author>	</entry>

	<entry>
		<id>https://xboxdevwiki.net/index.php?title=File:USB_Daughterboard_IC.png&amp;diff=6780</id>
		<title>File:USB Daughterboard IC.png</title>
		<link rel="alternate" type="text/html" href="https://xboxdevwiki.net/index.php?title=File:USB_Daughterboard_IC.png&amp;diff=6780"/>
				<updated>2019-10-03T09:27:48Z</updated>
		
		<summary type="html">&lt;p&gt;Teufelchen: Close-up of the ic on the usb daughterboard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Close-up of the ic on the usb daughterboard&lt;/div&gt;</summary>
		<author><name>Teufelchen</name></author>	</entry>

	<entry>
		<id>https://xboxdevwiki.net/index.php?title=Motherboard&amp;diff=6779</id>
		<title>Motherboard</title>
		<link rel="alternate" type="text/html" href="https://xboxdevwiki.net/index.php?title=Motherboard&amp;diff=6779"/>
				<updated>2019-10-03T09:08:33Z</updated>
		
		<summary type="html">&lt;p&gt;Teufelchen: /* Xbox 1.0 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;For a list of differences between these mainboards, also see [[Hardware Revisions]].&lt;br /&gt;
&lt;br /&gt;
== Xbox 1.0 ==&lt;br /&gt;
&lt;br /&gt;
[[File:Xbox-Motherboard-BR.jpg|400px|thumb|right|Xbox Version 1.0 Motherboard]]&lt;br /&gt;
&lt;br /&gt;
The following table is based on an Xbox 1.0{{citation needed}} retail board.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!| Device&lt;br /&gt;
! Loc.&lt;br /&gt;
! Part Number&lt;br /&gt;
! Manufacture&lt;br /&gt;
! Description&lt;br /&gt;
|- &lt;br /&gt;
| U2D1 &lt;br /&gt;
| D-2&lt;br /&gt;
| Pentium III (Coppermine)&lt;br /&gt;
| Intel &lt;br /&gt;
| 733MHz CPU 133MHz FSB 16Kb L1 cache 128Kb L2 cache&lt;br /&gt;
|- &lt;br /&gt;
| U2T1&lt;br /&gt;
| T-2 &lt;br /&gt;
| SC1186&lt;br /&gt;
| Semtech&lt;br /&gt;
| Programmable Synchronous DC/DC Converter&lt;br /&gt;
|-&lt;br /&gt;
| U3B1&lt;br /&gt;
| B-3&lt;br /&gt;
| LM358D&lt;br /&gt;
| Phillips&lt;br /&gt;
| Dual Operational Amplifier&lt;br /&gt;
|-&lt;br /&gt;
| U3B2&lt;br /&gt;
| B-4&lt;br /&gt;
| XGPU&lt;br /&gt;
| nVidia&lt;br /&gt;
| Graphics Processing Unit&lt;br /&gt;
|-&lt;br /&gt;
| U3R1&lt;br /&gt;
| R-3&lt;br /&gt;
| CY23S05&lt;br /&gt;
| Cypress&lt;br /&gt;
| Low-Cost 3.3V Spread Aware Zero Delay Buffer&lt;br /&gt;
|-&lt;br /&gt;
| U3T1&lt;br /&gt;
| T-3&lt;br /&gt;
| K4D263238M&lt;br /&gt;
| Samsung&lt;br /&gt;
| 1Mx32Bitx4 DDR Synchronous RAM&lt;br /&gt;
|-&lt;br /&gt;
| U4B1&lt;br /&gt;
| B-4&lt;br /&gt;
| CX25871&lt;br /&gt;
| Conexant&lt;br /&gt;
| Digital Video Encoder (same pinout as Bt868/869)&lt;br /&gt;
|-&lt;br /&gt;
| U4G1&lt;br /&gt;
| G-5&lt;br /&gt;
| SC1110CS&lt;br /&gt;
| Semtech&lt;br /&gt;
| Sink and Source DC/DC Controller for Termination Power Supply&lt;br /&gt;
|-&lt;br /&gt;
| U5F1&lt;br /&gt;
| F-5&lt;br /&gt;
| K4D263238M&lt;br /&gt;
| Samsung&lt;br /&gt;
| 1Mx32Bitx4 DDR Synchronous RAM&lt;br /&gt;
|-&lt;br /&gt;
| U6A1&lt;br /&gt;
| A-6&lt;br /&gt;
| LF353&lt;br /&gt;
| Texas Instruments&lt;br /&gt;
| Dual General-Purpose JFET-input Operational Amplifier&lt;br /&gt;
|-&lt;br /&gt;
| U6B1&lt;br /&gt;
| B-6&lt;br /&gt;
| WM9709&lt;br /&gt;
| Wolfson Micro&lt;br /&gt;
| High-quality stereo audio DAC (Digital to Analog converter)&lt;br /&gt;
|-&lt;br /&gt;
| U6D1&lt;br /&gt;
| D-6&lt;br /&gt;
| K4D263238M&lt;br /&gt;
| Samsung&lt;br /&gt;
| 1Mx32Bitx4 DDR Synchronous RAM&lt;br /&gt;
|-&lt;br /&gt;
| U6E1&lt;br /&gt;
| E-6&lt;br /&gt;
| MCPX&lt;br /&gt;
| nVidia&lt;br /&gt;
| Media and Communications Processor&lt;br /&gt;
|-&lt;br /&gt;
| U6F1&lt;br /&gt;
| F-6&lt;br /&gt;
| ADM1032&lt;br /&gt;
| Analog Devices&lt;br /&gt;
| +-1°C Remote and Local System Temperature Monitor&lt;br /&gt;
|-&lt;br /&gt;
| U6N1 	&lt;br /&gt;
| N-6&lt;br /&gt;
| K4D263238M&lt;br /&gt;
| Samsung&lt;br /&gt;
| 1Mx32Bitx4 DDR Synchronous RAM&lt;br /&gt;
|-&lt;br /&gt;
| U7B1&lt;br /&gt;
| B-7&lt;br /&gt;
| 1893AF&lt;br /&gt;
| Integrated Circuit Systems&lt;br /&gt;
| 3.3V 10Base-T/100Base-TX Integrated PHYceiver&lt;br /&gt;
|-&lt;br /&gt;
| U7B2&lt;br /&gt;
| B-7&lt;br /&gt;
| PIC16LC63A-04/S0 &lt;br /&gt;
| Microchip&lt;br /&gt;
| Low voltage 8bit CMOS microcontroller with A/D converter&lt;br /&gt;
|-&lt;br /&gt;
| U7C1&lt;br /&gt;
| C-7&lt;br /&gt;
| 388R&lt;br /&gt;
| Integrated Circuit Systems&lt;br /&gt;
| Quad PLL Quick Turn Clock Synthesizer&lt;br /&gt;
|-&lt;br /&gt;
| U7C2 &lt;br /&gt;
| C-7&lt;br /&gt;
| BR24C02&lt;br /&gt;
| Rohm&lt;br /&gt;
| I2C BUS compatible Serial EEPROM&lt;br /&gt;
|-&lt;br /&gt;
| U7C3&lt;br /&gt;
| C-7&lt;br /&gt;
| 331M&lt;br /&gt;
| Integrated Circuit Systems&lt;br /&gt;
| Single Output Clock&lt;br /&gt;
|-&lt;br /&gt;
| U7D1&lt;br /&gt;
| D-7&lt;br /&gt;
| M29F080A&lt;br /&gt;
| ST Microelectronics&lt;br /&gt;
| 8 MBit (1MB X8, Uniform block) single supply flash memory&lt;br /&gt;
|-&lt;br /&gt;
| U7P1&lt;br /&gt;
| P-7 &lt;br /&gt;
| &amp;lt;empty&amp;gt;&lt;br /&gt;
| &amp;lt;n/a&amp;gt; &lt;br /&gt;
| &amp;lt;n/a&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== USB Daughterboard ===&lt;br /&gt;
&lt;br /&gt;
[[File:USB_Daughterboard_front.png|100px|thumb|right|Xbox Version 1.0 USB Daughterboard]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!| Device&lt;br /&gt;
! Part Number&lt;br /&gt;
! Manufacture&lt;br /&gt;
! Description&lt;br /&gt;
|- &lt;br /&gt;
| U2 &lt;br /&gt;
| TUSB2046B&lt;br /&gt;
| Texas Instruments&lt;br /&gt;
| 4-Port Hub for USB w/Optional Serial EEPROM Interface&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Xbox 1.1 ==&lt;br /&gt;
&lt;br /&gt;
{{FIXME}}&lt;br /&gt;
&lt;br /&gt;
== Xbox 1.2 ==&lt;br /&gt;
&lt;br /&gt;
{{FIXME}}&lt;br /&gt;
&lt;br /&gt;
== Xbox 1.3 ==&lt;br /&gt;
&lt;br /&gt;
{{FIXME}}&lt;br /&gt;
&lt;br /&gt;
== Xbox 1.4 ==&lt;br /&gt;
&lt;br /&gt;
{{FIXME}}&lt;br /&gt;
&lt;br /&gt;
== Xbox 1.5 ==&lt;br /&gt;
&lt;br /&gt;
{{FIXME}}&lt;br /&gt;
&lt;br /&gt;
== Xbox 1.6 ==&lt;br /&gt;
&lt;br /&gt;
{{FIXME}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [https://web.archive.org/web/20040826151041/http://console-dev.com:80/IC.htm http://console-dev.com:80/IC.htm Documentation by PiXEL8]&lt;/div&gt;</summary>
		<author><name>Teufelchen</name></author>	</entry>

	<entry>
		<id>https://xboxdevwiki.net/index.php?title=Motherboard&amp;diff=6778</id>
		<title>Motherboard</title>
		<link rel="alternate" type="text/html" href="https://xboxdevwiki.net/index.php?title=Motherboard&amp;diff=6778"/>
				<updated>2019-10-03T08:47:24Z</updated>
		
		<summary type="html">&lt;p&gt;Teufelchen: /* Xbox 1.0 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;For a list of differences between these mainboards, also see [[Hardware Revisions]].&lt;br /&gt;
&lt;br /&gt;
== Xbox 1.0 ==&lt;br /&gt;
&lt;br /&gt;
[[File:Xbox-Motherboard-BR.jpg|400px|thumb|right|Xbox Version 1.0 Motherboard]]&lt;br /&gt;
&lt;br /&gt;
The following table is based on an Xbox 1.0{{citation needed}} retail board.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!| Device&lt;br /&gt;
! Loc.&lt;br /&gt;
! Part Number&lt;br /&gt;
! Manufacture&lt;br /&gt;
! Description&lt;br /&gt;
|- &lt;br /&gt;
| U2D1 &lt;br /&gt;
| D-2&lt;br /&gt;
| Pentium III (Coppermine)&lt;br /&gt;
| Intel &lt;br /&gt;
| 733MHz CPU 133MHz FSB 16Kb L1 cache 128Kb L2 cache&lt;br /&gt;
|- &lt;br /&gt;
| U2T1&lt;br /&gt;
| T-2 &lt;br /&gt;
| SC1186&lt;br /&gt;
| Semtech&lt;br /&gt;
| Programmable Synchronous DC/DC Converter&lt;br /&gt;
|-&lt;br /&gt;
| U3B1&lt;br /&gt;
| B-3&lt;br /&gt;
| LM358D&lt;br /&gt;
| Phillips&lt;br /&gt;
| Dual Operational Amplifier&lt;br /&gt;
|-&lt;br /&gt;
| U3B2&lt;br /&gt;
| B-4&lt;br /&gt;
| XGPU&lt;br /&gt;
| nVidia&lt;br /&gt;
| Graphics Processing Unit&lt;br /&gt;
|-&lt;br /&gt;
| U3R1&lt;br /&gt;
| R-3&lt;br /&gt;
| CY23S05&lt;br /&gt;
| Cypress&lt;br /&gt;
| Low-Cost 3.3V Spread Aware Zero Delay Buffer&lt;br /&gt;
|-&lt;br /&gt;
| U3T1&lt;br /&gt;
| T-3&lt;br /&gt;
| K4D263238M&lt;br /&gt;
| Samsung&lt;br /&gt;
| 1Mx32Bitx4 DDR Synchronous RAM&lt;br /&gt;
|-&lt;br /&gt;
| U4B1&lt;br /&gt;
| B-4&lt;br /&gt;
| CX25871&lt;br /&gt;
| Conexant&lt;br /&gt;
| Digital Video Encoder (same pinout as Bt868/869)&lt;br /&gt;
|-&lt;br /&gt;
| U4G1&lt;br /&gt;
| G-5&lt;br /&gt;
| SC1110CS&lt;br /&gt;
| Semtech&lt;br /&gt;
| Sink and Source DC/DC Controller for Termination Power Supply&lt;br /&gt;
|-&lt;br /&gt;
| U5F1&lt;br /&gt;
| F-5&lt;br /&gt;
| K4D263238M&lt;br /&gt;
| Samsung&lt;br /&gt;
| 1Mx32Bitx4 DDR Synchronous RAM&lt;br /&gt;
|-&lt;br /&gt;
| U6A1&lt;br /&gt;
| A-6&lt;br /&gt;
| LF353&lt;br /&gt;
| Texas Instruments&lt;br /&gt;
| Dual General-Purpose JFET-input Operational Amplifier&lt;br /&gt;
|-&lt;br /&gt;
| U6B1&lt;br /&gt;
| B-6&lt;br /&gt;
| WM9709&lt;br /&gt;
| Wolfson Micro&lt;br /&gt;
| High-quality stereo audio DAC (Digital to Analog converter)&lt;br /&gt;
|-&lt;br /&gt;
| U6D1&lt;br /&gt;
| D-6&lt;br /&gt;
| K4D263238M&lt;br /&gt;
| Samsung&lt;br /&gt;
| 1Mx32Bitx4 DDR Synchronous RAM&lt;br /&gt;
|-&lt;br /&gt;
| U6E1&lt;br /&gt;
| E-6&lt;br /&gt;
| MCPX&lt;br /&gt;
| nVidia&lt;br /&gt;
| Media and Communications Processor&lt;br /&gt;
|-&lt;br /&gt;
| U6F1&lt;br /&gt;
| F-6&lt;br /&gt;
| ADM1032&lt;br /&gt;
| Analog Devices&lt;br /&gt;
| +-1°C Remote and Local System Temperature Monitor&lt;br /&gt;
|-&lt;br /&gt;
| U6N1 	&lt;br /&gt;
| N-6&lt;br /&gt;
| K4D263238M&lt;br /&gt;
| Samsung&lt;br /&gt;
| 1Mx32Bitx4 DDR Synchronous RAM&lt;br /&gt;
|-&lt;br /&gt;
| U7B1&lt;br /&gt;
| B-7&lt;br /&gt;
| 1893AF&lt;br /&gt;
| Integrated Circuit Systems&lt;br /&gt;
| 3.3V 10Base-T/100Base-TX Integrated PHYceiver&lt;br /&gt;
|-&lt;br /&gt;
| U7B2&lt;br /&gt;
| B-7&lt;br /&gt;
| PIC16LC63A-04/S0 &lt;br /&gt;
| Microchip&lt;br /&gt;
| Low voltage 8bit CMOS microcontroller with A/D converter&lt;br /&gt;
|-&lt;br /&gt;
| U7C1&lt;br /&gt;
| C-7&lt;br /&gt;
| 388R&lt;br /&gt;
| Integrated Circuit Systems&lt;br /&gt;
| Quad PLL Quick Turn Clock Synthesizer&lt;br /&gt;
|-&lt;br /&gt;
| U7C2 &lt;br /&gt;
| C-7&lt;br /&gt;
| BR24C02&lt;br /&gt;
| Rohm&lt;br /&gt;
| I2C BUS compatible Serial EEPROM&lt;br /&gt;
|-&lt;br /&gt;
| U7C3&lt;br /&gt;
| C-7&lt;br /&gt;
| 331M&lt;br /&gt;
| Integrated Circuit Systems&lt;br /&gt;
| Single Output Clock&lt;br /&gt;
|-&lt;br /&gt;
| U7D1&lt;br /&gt;
| D-7&lt;br /&gt;
| M29F080A&lt;br /&gt;
| ST Microelectronics&lt;br /&gt;
| 8 MBit (1MB X8, Uniform block) single supply flash memory&lt;br /&gt;
|-&lt;br /&gt;
| U7P1&lt;br /&gt;
| P-7 &lt;br /&gt;
| &amp;lt;empty&amp;gt;&lt;br /&gt;
| &amp;lt;n/a&amp;gt; &lt;br /&gt;
| &amp;lt;n/a&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== USB Daughterboard ===&lt;br /&gt;
&lt;br /&gt;
[[File:USB_Daughterboard_front.png|400px|thumb|right|Xbox Version 1.0 USB Daughterboard]]&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!| Device&lt;br /&gt;
! Part Number&lt;br /&gt;
! Manufacture&lt;br /&gt;
! Description&lt;br /&gt;
|- &lt;br /&gt;
| U2 &lt;br /&gt;
| TUSB2046B&lt;br /&gt;
| Texas Instruments&lt;br /&gt;
| 4-Port Hub for USB w/Optional Serial EEPROM Interface&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Xbox 1.1 ==&lt;br /&gt;
&lt;br /&gt;
{{FIXME}}&lt;br /&gt;
&lt;br /&gt;
== Xbox 1.2 ==&lt;br /&gt;
&lt;br /&gt;
{{FIXME}}&lt;br /&gt;
&lt;br /&gt;
== Xbox 1.3 ==&lt;br /&gt;
&lt;br /&gt;
{{FIXME}}&lt;br /&gt;
&lt;br /&gt;
== Xbox 1.4 ==&lt;br /&gt;
&lt;br /&gt;
{{FIXME}}&lt;br /&gt;
&lt;br /&gt;
== Xbox 1.5 ==&lt;br /&gt;
&lt;br /&gt;
{{FIXME}}&lt;br /&gt;
&lt;br /&gt;
== Xbox 1.6 ==&lt;br /&gt;
&lt;br /&gt;
{{FIXME}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* [https://web.archive.org/web/20040826151041/http://console-dev.com:80/IC.htm http://console-dev.com:80/IC.htm Documentation by PiXEL8]&lt;/div&gt;</summary>
		<author><name>Teufelchen</name></author>	</entry>

	<entry>
		<id>https://xboxdevwiki.net/index.php?title=File:USB_Daughterboard_angle.png&amp;diff=6777</id>
		<title>File:USB Daughterboard angle.png</title>
		<link rel="alternate" type="text/html" href="https://xboxdevwiki.net/index.php?title=File:USB_Daughterboard_angle.png&amp;diff=6777"/>
				<updated>2019-10-03T08:34:46Z</updated>
		
		<summary type="html">&lt;p&gt;Teufelchen: The USB Daughterboard of the Rev. 1.0 XBOX from the side&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The USB Daughterboard of the Rev. 1.0 XBOX from the side&lt;/div&gt;</summary>
		<author><name>Teufelchen</name></author>	</entry>

	<entry>
		<id>https://xboxdevwiki.net/index.php?title=File:USB_Daughterboard_back.png&amp;diff=6776</id>
		<title>File:USB Daughterboard back.png</title>
		<link rel="alternate" type="text/html" href="https://xboxdevwiki.net/index.php?title=File:USB_Daughterboard_back.png&amp;diff=6776"/>
				<updated>2019-10-03T08:31:34Z</updated>
		
		<summary type="html">&lt;p&gt;Teufelchen: The backside of the USB Daughterboard of the Rev. 1.0 XBOX&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The backside of the USB Daughterboard of the Rev. 1.0 XBOX&lt;/div&gt;</summary>
		<author><name>Teufelchen</name></author>	</entry>

	<entry>
		<id>https://xboxdevwiki.net/index.php?title=File:USB_Daughterboard_front.png&amp;diff=6775</id>
		<title>File:USB Daughterboard front.png</title>
		<link rel="alternate" type="text/html" href="https://xboxdevwiki.net/index.php?title=File:USB_Daughterboard_front.png&amp;diff=6775"/>
				<updated>2019-10-03T08:28:50Z</updated>
		
		<summary type="html">&lt;p&gt;Teufelchen: The frontside of the USB Daughterboard from Rev 1.0 XBOX&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The frontside of the USB Daughterboard from Rev 1.0 XBOX&lt;/div&gt;</summary>
		<author><name>Teufelchen</name></author>	</entry>

	</feed>