WLADX - need help with HiROM

This is an archive of a topic from NESdev BBS, taken in mid-October 2019 before a server upgrade.
View original topic
WLADX - need help with HiROM
by on (#104082)
I was using LoROM mapping all the time with WLADX, but now I need HiROM. I can't figure out why the assembled ROM doesn't work, it just gives me a black screen. Here's my Header:

Code:
.MEMORYMAP
  SLOTSIZE $10000
  DEFAULTSLOT 0
  SLOT 0 $0000
.ENDME

.ROMBANKSIZE $10000
.ROMBANKS 8

.SNESHEADER
  ID "SNES"
 
  NAME "RS-232 SUITE V0.03   "

  HIROM
  FASTROM

  CARTRIDGETYPE $00
  ROMSIZE $08
  SRAMSIZE $00
  COUNTRY $01
  LICENSEECODE $00
  VERSION $00
.ENDSNES

.SNESNATIVEVECTOR
  COP EmptyHandler
  BRK EmptyHandler
  ABORT EmptyHandler
  NMI VBlank
  IRQ EmptyHandler
.ENDNATIVEVECTOR

.SNESEMUVECTOR
  COP EmptyHandler
  ABORT EmptyHandler
  NMI EmptyHandler
  RESET Start
  IRQBRK EmptyHandler
.ENDEMUVECTOR

.BANK 0 SLOT 0
.ORG 0
.SECTION "EmptyVectors" SEMIFREE

EmptyHandler:
       rti

.ENDS

.EMPTYFILL $00
Re: WLADX - need help with HiROM
by on (#104088)
.org wrong?
Re: WLADX - need help with HiROM
by on (#104104)
Keep in mind that if you use banks $00-$3F to address ROM you can only use offsets $8000-$FFFF. To get the lower 32kB you should use the mirrors starting at bank $40.
Re: WLADX - need help with HiROM
by on (#104105)
Can someone "spoon-feed" me to the correct parameters, I'm feeling like an airhead today :D
Re: WLADX - need help with HiROM
by on (#104106)
This is what I use: http://code.google.com/p/neo-myth-menu/ ... nu/hdr.asm
Re: WLADX - need help with HiROM
by on (#104110)
Thanks !