Check out www.tecmomadison.com if you’re interested in signing up for the either Tecmo Super Bowl tournament based in Madison, WI.
203 guys are currently signed up for the tournament. 176 will be allowed to participate on tournament day!
Check out www.tecmomadison.com if you’re interested in signing up for the either Tecmo Super Bowl tournament based in Madison, WI.
203 guys are currently signed up for the tournament. 176 will be allowed to participate on tournament day!
I’ve launched a website for the annual Madison Tecmo Super Bowl Tournament: www.tecmomadison.com. From here, you can register for the site and sign up for the tournament scheduled to occur on March 5, 2011. It’s the seventh annual competition, and it’s expected to have over 100 competitors!
I just recently moved www.sois.com/tcs to www.tecmochampionshipseries.com.
Tecmo Championship Series is an online Tecmo Super Bowl league that uses a hacked ROM. The league consists of 24 guys each controlling a college football team of their choice. During each season, league members are able to do in-season recruiting of new players to add to their roster. The players are randomly-generated and league members compete to recruit a player using scouting visits. Check out www.tecmochampionshipseries.com for more information!
This post contains a brief discussion of how to modify a Tecmo Super Bowl (NES) ROM to be able to change the default Pro Bowl rosters.
This data was gathered using data/information from the Tecmo Repository. I used TSBM 1.3 from Emuware to change members on the Pro Bowl roster since this application had the functionality. I then used the hex editor, Translhextion, which I most likely downloaded from Zophar’s Domain.
I opened the original ROM in Translhextion and exported as “hexdump” to a text file. I then used TSBM 1.3 to change the starting QB for AFC Pro Bowl team and applied my changes to a copy of the original ROM. I then opened my altered ROM in Translhextion and exported as “hexdump” to another text file. To see what changed, I used a “diff” program called KDiff3 (a free download) to compare the two text files.
See my earlier post about modifying Tecmo Super Bowl (NES) for some screen-shots.
I changed the starting QB of the AFC Pro Bowl team from QB Bills to Frank Reich (Bills – QB1 to Bills – QB2). When I opened KDiff3 to see the changes, I noticed that x32854 was changed from x00 to x01. I then changed it from Frank Reich to Jeff George (Colts – QB1). Using KDiff3, I saw that x32853 was now x01, and x32854 was x00. I noticed that it looked like QB1 of the AFC Pro Bowl team was controlled by bytes x32853 and x32854. The first of the two bytes represented the team; the second of the two bytes represented the player. The team slot values go from x00 (Buffalo Bills) to x1b (Atlanta Falcons). The player slot bytes went from x00 (QB1) to x1d (Punter).
Since each player on the Pro Bowl team is represented by 2 bytes, and there are 30 players on a squad, there are 60 bytes to make one Pro Bowl team. The AFC Pro Bowl starts at x32853. The NFC Pro Bowl team starts at x3288f.
Team Slot Values
Player Slot Values (Assume 2RB, 2WR, 1TE naming – Use Houston Oilers as example – naming does not match the Oilers)
So, if we want to put P Greg Montgomery on the Pro Bowl, his two-byte value would be x07 x1d. The x07 for Houston Oilers, and the x1d for the Punter slot. If we wanted to make him the Punter on the AFC Pro Bowl team, we would go to the 59th and 60th bytes of the AFC Pro Bowl team (x3288d and x3288e).
So, to put P Greg Montgomery as the Punter on the AFC Pro Bowl team, we need to make x3288d have a value of x07, and x3288e needs a value of x1d. Theoretically, we could have Greg Montgomery play as the starting QB for the AFC Pro Bowl team if we put x07 x1d starting at x32853 (the QB1 slot of the AFC Pro Bowl team).
This post contains a brief discussion of how to modify a Tecmo Super Bowl (NES) ROM to be able to change the default kick returners and punt returners for the various teams.
This data was gathered using data/information from the Tecmo Repository. I used TSBToolSupreme to change default kick returner since this application had the functionality. I then used the hex editor, Translhextion, which I most likely downloaded from Zophar’s Domain.
I opened the original ROM in Translhextion and exported as “hexdump” to a text file. I then changed the default kick returner for the Buffalo Bills and applied my changes to a copy of the original ROM. I then opened my altered ROM in Translhextion and exported as “hexdump” to another text file. To see what changed, I used a “diff” program called KDiff3 (a free download) to compare the two text files.
At this point, I did a search for x239d3 (which was another location where a value had been changed) on the Tecmo Repository message board. I was able to find a post by jstout that confirmed that this was the correct location.
There are two key locations in the ROM (which includes the 16 (x10) byte NES ROM header): x239d3 and x328D3.
The teams go in order: x239d3/x328d3 is Buffalo Bills through x239ee/x328ee is Atlanta Falcons (e.g. AFC East, AFC Central, AFC West, NFC East, NFC Central, NFC West).
One byte represents both the KR and PR. The first nibble represents the KR; the second nibble represents the PR. For example, at x239d3, the Buffalo Bills have a value of x59. The first nibble is ’5′ and the second nibble is ’9′. So, the KR is represented by ’5′, and the PR is represented by ’9′. The value here corresponds to the slot number on the roster.
The slot order is as we would see on the “Team Data” screen for a team.
So, the KR for the Buffalo Bills is represented by the first nibble of the byte at x239d3. The value there is ’5′. The value there represents the slot number on the roster. Slot 5 on the roster corresponds to RB4.
Also, the PR for the Buffalo Bills is represented by the second nibble of the byte at x239d3. The value there is ’9′. The there represents the slot number on the roster. Slot 9 on the roster corresponds to WR4.
If we change the value at x239d3 to be ‘x27′, we would see the KR as RB1 (Thurman Thomas) and the PR as WR2 (Andre Reed). Theoretically, we could put QB Bills as the KR and PR by changing the value to ‘x00′ at x239d3!