Me, neither. Nor do I really care.Opa Opa wrote:lol.YoshiEgg25 wrote:9BBreetai wrote:10011011
Is that what it comes out to? I don't remember how to convert those.
How does a game cartridge store information?
Re: How does a game cartridge store information?

Sales thread. Make offers! PC Engine and Famicom: http://www.racketboy.com/forum/viewtopi ... 17#p197217.
My PC Engine/Turbografx-16 Guide: http://www.racketboy.com/forum/viewtopi ... 57#p654857
Re: How does a game cartridge store information?
I don't get it either, and I do not have the technical knowledge to understand or care. That's why elves assemble game cartridges, not americans.
-
gtmtnbiker
- Next-Gen
- Posts: 4320
- Joined: Fri Jan 09, 2009 1:14 pm
- Location: Massachusetts
Re: How does a game cartridge store information?
There's no need to do that. Hex is base 16. So you would take 10011011 and change it to:YoshiEgg25 wrote:I converted it to decimal first.Opa Opa wrote:lol.YoshiEgg25 wrote: 9B
Is that what it comes out to? I don't remember how to convert those.
1001 1011
9 B
A hex digit represents a group of 4 binary digits.
At some point in Computer Science, you'll learn the binary (base 2), octal (base 7, group of 3 binary digits), hex (base 16, group of 4 binary digits) number systems. You'll know how each hex digit looks like in binary and can convert back-and-forth without having to convert to decimal.
Binary is base 2
1011 is (1 * 2^3) + (0 * 2^2) + (1 * 2^1) + (1 * 2^0) = 8 + 0 + 2 + 1 = 11 (decimal) = B (hex)
Hex is base 16
9B is (9 * 16^1) + (B * 16^0) = 144 + 11 = 155
Computers work exclusively in binary. Octal/Hex is for human convenience to more easily represent large binary numbers.
Re: How does a game cartridge store information?
Yeah, I was going to say that too. Binary <-> Hex is much easier than Binary <-> Decimal.
For the OP, there's an article on ROM at HowStuffWorks.
For the OP, there's an article on ROM at HowStuffWorks.
We are prepared to live in the plain and die in the plain!
Re: How does a game cartridge store information?
Octal's base 8. The grouping's right, though.gtmtnbiker wrote:octal (base 7, group of 3 binary digits),
Blizzard Entertainment Software Developer - All comments and views are my own and not representative of the company.
-
gtmtnbiker
- Next-Gen
- Posts: 4320
- Joined: Fri Jan 09, 2009 1:14 pm
- Location: Massachusetts
Re: How does a game cartridge store information?
Yup, you're correct. Not sure why I said 7.MrPopo wrote:Octal's base 8. The grouping's right, though.gtmtnbiker wrote:octal (base 7, group of 3 binary digits),