User Tools

Site Tools


general:guides:hxd_guide

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
general:guides:hxd_guide [2024/10/18 22:02] felixwrightgeneral:guides:hxd_guide [2024/10/18 22:28] (current) – [Downloading HxD] felixwright
Line 15: Line 15:
 ===== Downloading HxD ===== ===== Downloading HxD =====
  
-HxD 2.0 RC can be downloaded from mh-nexus.+HxD 2.0 RC can be [[https://mh-nexus.de/en/downloads.php?product=HxD20|downloaded from mh-nexus.]]
  
 What is Hexadecimal? What is Hexadecimal?
Line 29: Line 29:
 More examples: More examples:
  
-DECIMAL  =  0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 +    DECIMAL  =  0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15  16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 
- +    HEX      =  0 1 2 3 4 5 6 7 8 9  A  B  C  D  E  F  10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F
-    HEX  =  0 1 2 3 4 5 6 7 8 9 A  B  C  D  E  F  10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F+
  
 There are many online resources for converting hex to decimal, but in this tutorial I will explain how to convert hex to decimal and decimal to hex using windows calculator. Before we begin, run calc.exe and press Alt + 3. This will put the calculator in programming mode. There are many online resources for converting hex to decimal, but in this tutorial I will explain how to convert hex to decimal and decimal to hex using windows calculator. Before we begin, run calc.exe and press Alt + 3. This will put the calculator in programming mode.
Line 103: Line 102:
  
 Examples: Examples:
-PC address  SNES address + 
-$4000  $80:C000 +PC address SNES address ^ 
-$9500  $81:0500 +$4000  $80:C000 | 
-$791F8  $8F:91F8 +$9500  $81:0500 | 
-$7FFFF  $8F:FFFF+$791F8 $8F:91F8 | 
 +$7FFFF $8F:FFFF 
  
 Looking at the LoROM addresses, we can see these addresses are referring to locations in banks 80, 81, 8F, and 8F (again), respectively. Looking at the LoROM addresses, we can see these addresses are referring to locations in banks 80, 81, 8F, and 8F (again), respectively.
Line 118: Line 119:
 From the SMMM: From the SMMM:
  
 +<code>
 Bank $##        LoROM address          PC address        Bank description Bank $##        LoROM address          PC address        Bank description
 --------------------------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------------------------
Line 257: Line 259:
 Bank $FE      $FE:0000-$FE:7FFF      $3F0000-3F7FFF      Free space Bank $FE      $FE:0000-$FE:7FFF      $3F0000-3F7FFF      Free space
 Bank $FF      $FF:8000-$FF:FFFF      $3F8000-3FFFFF      Free space Bank $FF      $FF:8000-$FF:FFFF      $3F8000-3FFFFF      Free space
- +</code>
general/guides/hxd_guide.1729288967.txt.gz · Last modified: by felixwright