<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">
<channel>
	<title>All Forums</title>
	<description></description>
	<link>http://www.atariage.com/forums</link>
	<pubDate>Wed, 08 Feb 2012 06:30:06 +0000</pubDate>
	<ttl>30</ttl>
	<item>
		<title>Trying to hook up Atari 2600 to computer using Hauppauge WinTV-HVR-850</title>
		<link>http://www.atariage.com/forums/topic/193854-trying-to-hook-up-atari-2600-to-computer-using-hauppauge-wintv-hvr-850/</link>
		<description><![CDATA[I'm using a Hauppauge WinTV-HVR-850 TV thingy that Dell sent with my computer. I finally have my computer desk area set up so I can hook up my Atari 2600 using the thing, but the Atari 2600 'screen' flashes and there is something like a full second or two of lag.<br />
<br />
Does anyone know how I can clear up the flashing and get rid of the lag? I went Googling, but couldn't find anything that was helpful.<br />
<br />
<br />
Thanks.]]></description>
		<pubDate>Wed, 08 Feb 2012 06:30:06 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193854-trying-to-hook-up-atari-2600-to-computer-using-hauppauge-wintv-hvr-850/</guid>
	</item>
	<item>
		<title><![CDATA[atari2600land's Blog - The perfect movie (part 2)]]></title>
		<link>http://www.atariage.com/forums/topic/193851-atari2600lands-blog-the-perfect-movie-part-2/</link>
		<description><![CDATA[So I got the urge to work on my movie script again. It's at 12 pages so far. My goal is 70 pages since I want it to be about an hour long. Only problem is I don't know what movie studio would want to produce a movie that's only an hour long. They sure didn't have a problem with it back in the 1960s with all those horror films I see...<br />
<br />
<a href='http://www.atariage.com/forums/blog/168/entry-8874-the-perfect-movie-part-2/' class='bbc_url' title=''>http://www.atariage.com/forums/blog/168/entry-8874-the-perfect-movie-part-2/</a>]]></description>
		<pubDate>Wed, 08 Feb 2012 03:14:00 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193851-atari2600lands-blog-the-perfect-movie-part-2/</guid>
	</item>
	<item>
		<title>POKEY keyboard scanning</title>
		<link>http://www.atariage.com/forums/topic/193850-pokey-keyboard-scanning/</link>
		<description><![CDATA[Confirmation wanted :-)<br />
<br />
I want to emulate some shift+key combo's with logic gates, like 74LS/74HCT and was under the impression I need to delay the actual key press a little bit after shift was pressed to get it to work.<br />
<br />
After reading the Altirra hardware manual ( chapter 5.8 ) I'm not so sure anymore if I have to delay anything at all.<br />
<br />
Does setting the "shift" bit together with another key's bit, simultaneously, give me the right result?]]></description>
		<pubDate>Wed, 08 Feb 2012 02:41:07 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193850-pokey-keyboard-scanning/</guid>
	</item>
	<item>
		<title><![CDATA[Defender 2000 - Released in '95 or '96?]]></title>
		<link>http://www.atariage.com/forums/topic/193849-defender-2000-released-in-95-or-96/</link>
		<description><![CDATA[There seems to be some conflicting information on when this game was released. Or at least, conflicting information as far as I can find right now (most gaming sites are blocked since I'm at work). When was Defender 2000 released? I am told some sites (like MobyGames) list it as '96. However, the manual scan in the AtariAge database has a copyright date of 1995. Does anyone know for sure? Perhaps someone who actually bought the game way-back-when can vouch? I'm not necessarily looking for an exact month or day, I'd just like to know what year it was <em class='bbc'>actually </em>released in.<br />
<br />
*edit: Sites claim that Zoop, NBA Jam T.E., and Attack of the Mutant Penguins were also released in '96 (FFL not withstanding, of course), so if that's true, maybe D2K being released then isn't so far off. The title screen and instructions say '95 though. Perhaps it just wasn't put out to the public until '96.]]></description>
		<pubDate>Wed, 08 Feb 2012 01:33:48 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193849-defender-2000-released-in-95-or-96/</guid>
	</item>
	<item>
		<title>Program bug from program from a book</title>
		<link>http://www.atariage.com/forums/topic/193848-program-bug-from-program-from-a-book/</link>
		<description><![CDATA[I typed in the program below from an atari programming book (Understanding Atari Graphics) and I'm getting an error 5 in line 290 and can't figure out why. I don't think I made any mistakes. (checked it a bunch of times). Any suggestions?<br />
<br />
Allan<br />
<br />
<br />
<br />
<br />
10 REM Zigzag					     <br />
  20 REM a mode 10 demo			     <br />
  50 GRAPHICS 10					    <br />
  60 FOR R=704 TO 712:READ C:POKE R,C:NEXT R								  <br />
  70 DATA 0,148,182,216,30,58,74,68,100<br />
  80 DIM S$(33):I=-33				   <br />
  90 FOR B=1 TO 3					   <br />
  100 S$="ABCDEFGHABCDEFGH":T=1:I=I+32:GOSUB 160							  <br />
  110 S$="HGFEDCBAHGFEDCBA":T=2:I=I+32:GOSUB 160							  <br />
  120 NEXT B						    <br />
  130 X=PEEK(712)					   <br />
  140 FOR R=1 TO 8:Y=PEEK(704+R):POKE 70 4+R,X:X=Y:NEXT R:IF PEEK(53279)=6 THEN END								  <br />
  150 GOTO 140						  <br />
  160 FOR Y=1 TO 16				     <br />
  170 POSITION 0,I+Y				    <br />
  180 FOR X=1 TO 10				     <br />
  190 ON T GOSUB 280,290			    <br />
  200 NEXT X:NEXT Y				     <br />
  210 FOR Y2=16 TO 1 STEP -1		    <br />
  220 POSITION 0,I+16+Y2			    <br />
  230 FOR X=1 TO 10				     <br />
  240 Y=17-Y2						   <br />
  250 ON T GOSUB 280,290			    <br />
  260 NEXT X:NEXT Y2				    <br />
  270 RETURN						    <br />
  280 ? #6;S$(9-(Y-(INT((Y-1)/<img src='http://www.atariage.com/forums/public/style_emoticons/atariage/icon_cool.gif' class='bbc_emoticon' alt='8)' />*<img src='http://www.atariage.com/forums/public/style_emoticons/atariage/icon_cool.gif' class='bbc_emoticon' alt='8)' />),16-(Y-(INT((Y-1)/<img src='http://www.atariage.com/forums/public/style_emoticons/atariage/icon_cool.gif' class='bbc_emoticon' alt='8)' />*<img src='http://www.atariage.com/forums/public/style_emoticons/atariage/icon_cool.gif' class='bbc_emoticon' alt='8)' />));:RETURN	     <br />
  290 ? #6;S$(1-(Y-(INT((Y-1)/<img src='http://www.atariage.com/forums/public/style_emoticons/atariage/icon_cool.gif' class='bbc_emoticon' alt='8)' />*<img src='http://www.atariage.com/forums/public/style_emoticons/atariage/icon_cool.gif' class='bbc_emoticon' alt='8)' />),8+(Y-(INT((Y-1)/<img src='http://www.atariage.com/forums/public/style_emoticons/atariage/icon_cool.gif' class='bbc_emoticon' alt='8)' />*<img src='http://www.atariage.com/forums/public/style_emoticons/atariage/icon_cool.gif' class='bbc_emoticon' alt='8)' />));:RETURN]]></description>
		<pubDate>Wed, 08 Feb 2012 01:27:27 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193848-program-bug-from-program-from-a-book/</guid>
	</item>
	<item>
		<title>Rev B Basic Cartridge</title>
		<link>http://www.atariage.com/forums/topic/193847-rev-b-basic-cartridge/</link>
		<description><![CDATA[Anyone have any idea on this cart.  I don't think they ever made revision b carts and it is in a Star Raiders Cart with handwritten stick on. Has an empty socket as well.  It does work though. Is it a cart someone burnt for themselves.  Have had it for several years and don't remember where I got it from.<br />
<br />
<p class='bbc_center'><a class='resized_img' rel='lightbox[2461320]' id='ipb-attach-url-233694-0-04601600-1328684259' href="http://www.atariage.com/forums/index.php?app=core&module=attach&section=attach&attach_rel_module=post&attach_id=233694" title="revbcart.JPG - Size: 846.22K, Downloads: 20"><img src="http://www.atariage.com/forums/uploads/monthly_02_2012/post-919-0-14376100-1328663838_thumb.jpg" id='ipb-attach-img-233694-0-04601600-1328684259' style='width:235;height:250' class='attach' width="235" height="250" alt="Attached Image: revbcart.JPG" /></a></p>
<br />
<p class='bbc_center'><a class='resized_img' rel='lightbox[2461320]' id='ipb-attach-url-233695-0-06241100-1328684259' href="http://www.atariage.com/forums/index.php?app=core&module=attach&section=attach&attach_rel_module=post&attach_id=233695" title="revinside.JPG - Size: 1006.45K, Downloads: 24"><img src="http://www.atariage.com/forums/uploads/monthly_02_2012/post-919-0-87621400-1328663855_thumb.jpg" id='ipb-attach-img-233695-0-06241100-1328684259' style='width:232;height:250' class='attach' width="232" height="250" alt="Attached Image: revinside.JPG" /></a></p>]]></description>
		<pubDate>Wed, 08 Feb 2012 01:18:11 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193847-rev-b-basic-cartridge/</guid>
	</item>
	<item>
		<title><![CDATA[Sony: You Won’t Be Able To Bring PSP Discs To Vita, unless you're in Japan.]]></title>
		<link>http://www.atariage.com/forums/topic/193846-sony-you-wont-be-able-to-bring-psp-discs-to-vita-unless-youre-in-japan/</link>
		<description><![CDATA[<a href='http://kotaku.com/5883089/sony-you-wont-be-able-to-bring-psp-discs-to-vita' class='bbc_url' title='External link' rel='nofollow external'>http://kotaku.com/5883089/sony-you-wont-be-able-to-bring-psp-discs-to-vita</a><br />
<br />
Kudos Sony, kudos.  Unless there are some legalities that are not currently being mentioned that are preventing this from happening, it's a pretty shamful lack of action.]]></description>
		<pubDate>Wed, 08 Feb 2012 00:52:43 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193846-sony-you-wont-be-able-to-bring-psp-discs-to-vita-unless-youre-in-japan/</guid>
	</item>
	<item>
		<title>Interest Check! Zelda art cells and Nintendo Classified Disc New Unopened!</title>
		<link>http://www.atariage.com/forums/topic/193845-interest-check-zelda-art-cells-and-nintendo-classified-disc-new-unopened/</link>
		<description><![CDATA[<span rel='lightbox'><img src='http://i938.photobucket.com/albums/ad221/christophertleach/IMG_20120131_201812.jpg' alt='Posted Image' class='bbc_img' /></span><br />
<span rel='lightbox'><img src='http://i938.photobucket.com/albums/ad221/christophertleach/IMG_20120131_201832.jpg' alt='Posted Image' class='bbc_img' /></span><br />
<span rel='lightbox'><img src='http://i938.photobucket.com/albums/ad221/christophertleach/IMG_20120131_201951.jpg' alt='Posted Image' class='bbc_img' /></span><br />
<span rel='lightbox'><img src='http://i938.photobucket.com/albums/ad221/christophertleach/IMG_20120131_201940.jpg' alt='Posted Image' class='bbc_img' /></span><br />
<br />
Ive got 4 of the art cells with diff numbers and only one of the Nintendo Classified disc.  Unopened and like new!<br />
<br />
Pm me if interested]]></description>
		<pubDate>Wed, 08 Feb 2012 00:33:19 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193845-interest-check-zelda-art-cells-and-nintendo-classified-disc-new-unopened/</guid>
	</item>
	<item>
		<title>Atari XEGS for sale !</title>
		<link>http://www.atariage.com/forums/topic/193843-atari-xegs-for-sale/</link>
		<description><![CDATA[<span style='font-size: 18px;'><strong class='bbc'>There is an Atari XEGS system plus the accessories for sale online!!!</strong></span><br />
<br />
Atari XEGS Console on eBay - Item Number: 120855465684<br />
<br />
Atari XEGS Light Gun on eBay - Item Number: 120855465621<br />
<br />
Atari XEGS Box and Foam Packaing on eBay - Item Number: 120855465556<br />
<br />
Atari XEGS AC Power Supply on eBay for only $9.99 - Item Number: 120855467530<br />
<br />
Atari XEGS AC Sustem Manuals on eBay - Item Number: 120855465377<br />
<br />
Atari XEGS AC Bug Hunt and Manual on eBay for only $14.99 - Item Number: 110820933815<br />
<br />
Atari XEGS AC Missile Command Manual on eBay for only $3.99 - Item Number: 120855466712<br />
<br />
Atari XEGS AC Flight Simulator and Manuals on eBay for only $19.99 - Item Number: 110820933027<br />
<br />
 <img src='http://www.atariage.com/forums/public/style_emoticons/atariage/icon_smile.gif' class='bbc_emoticon' alt=':)' /><div id='attach_wrap' class=''>
	<h4>Attached Thumbnails</h4>
	<ul>
		
			<li class=''>
				<a class='resized_img' rel='lightbox[2461160]' id='ipb-attach-url-233669-0-07009300-1328684259' href="http://www.atariage.com/forums/index.php?app=core&module=attach&section=attach&attach_rel_module=post&attach_id=233669" title="100_2067.JPG - Size: 448.95K, Downloads: 1"><img src="http://www.atariage.com/forums/uploads/monthly_02_2012/post-4779-0-74476300-1328651869_thumb.jpg" id='ipb-attach-img-233669-0-07009300-1328684259' style='width:250;height:207' class='attach' width="250" height="207" alt="Attached Image: 100_2067.JPG" /></a>
			</li>
		

			<li class=''>
				<a class='resized_img' rel='lightbox[2461160]' id='ipb-attach-url-233670-0-07024200-1328684259' href="http://www.atariage.com/forums/index.php?app=core&module=attach&section=attach&attach_rel_module=post&attach_id=233670" title="100_2077.JPG - Size: 180.52K, Downloads: 2"><img src="http://www.atariage.com/forums/uploads/monthly_02_2012/post-4779-0-32809600-1328651897_thumb.jpg" id='ipb-attach-img-233670-0-07024200-1328684259' style='width:250;height:194' class='attach' width="250" height="194" alt="Attached Image: 100_2077.JPG" /></a>
			</li>
		

			<li class=''>
				<a class='resized_img' rel='lightbox[2461160]' id='ipb-attach-url-233671-0-07035400-1328684259' href="http://www.atariage.com/forums/index.php?app=core&module=attach&section=attach&attach_rel_module=post&attach_id=233671" title="100_2063.JPG - Size: 224.51K, Downloads: 2"><img src="http://www.atariage.com/forums/uploads/monthly_02_2012/post-4779-0-44746000-1328651927_thumb.jpg" id='ipb-attach-img-233671-0-07035400-1328684259' style='width:250;height:149' class='attach' width="250" height="149" alt="Attached Image: 100_2063.JPG" /></a>
			</li>
		

			<li class=''>
				<a class='resized_img' rel='lightbox[2461160]' id='ipb-attach-url-233672-0-07046400-1328684259' href="http://www.atariage.com/forums/index.php?app=core&module=attach&section=attach&attach_rel_module=post&attach_id=233672" title="100_2081.JPG - Size: 153.29K, Downloads: 2"><img src="http://www.atariage.com/forums/uploads/monthly_02_2012/post-4779-0-58803400-1328651943_thumb.jpg" id='ipb-attach-img-233672-0-07046400-1328684259' style='width:250;height:182' class='attach' width="250" height="182" alt="Attached Image: 100_2081.JPG" /></a>
			</li>
		

			<li class=''>
				<a class='resized_img' rel='lightbox[2461160]' id='ipb-attach-url-233673-0-07057900-1328684259' href="http://www.atariage.com/forums/index.php?app=core&module=attach&section=attach&attach_rel_module=post&attach_id=233673" title="100_2079.JPG - Size: 135.47K, Downloads: 2"><img src="http://www.atariage.com/forums/uploads/monthly_02_2012/post-4779-0-45539300-1328651968_thumb.jpg" id='ipb-attach-img-233673-0-07057900-1328684259' style='width:250;height:188' class='attach' width="250" height="188" alt="Attached Image: 100_2079.JPG" /></a>
			</li>
		

			<li class=''>
				<a class='resized_img' rel='lightbox[2461160]' id='ipb-attach-url-233674-0-07068600-1328684259' href="http://www.atariage.com/forums/index.php?app=core&module=attach&section=attach&attach_rel_module=post&attach_id=233674" title="100_2074.JPG - Size: 153.18K, Downloads: 3"><img src="http://www.atariage.com/forums/uploads/monthly_02_2012/post-4779-0-19260100-1328651986_thumb.jpg" id='ipb-attach-img-233674-0-07068600-1328684259' style='width:250;height:165' class='attach' width="250" height="165" alt="Attached Image: 100_2074.JPG" /></a>
			</li>
		

			<li class=''>
				<a class='resized_img' rel='lightbox[2461160]' id='ipb-attach-url-233675-0-07079400-1328684259' href="http://www.atariage.com/forums/index.php?app=core&module=attach&section=attach&attach_rel_module=post&attach_id=233675" title="100_2066.JPG - Size: 178.84K, Downloads: 3"><img src="http://www.atariage.com/forums/uploads/monthly_02_2012/post-4779-0-28075200-1328652005_thumb.jpg" id='ipb-attach-img-233675-0-07079400-1328684259' style='width:250;height:171' class='attach' width="250" height="171" alt="Attached Image: 100_2066.JPG" /></a>
			</li>
		
	</ul>
</div>]]></description>
		<pubDate>Tue, 07 Feb 2012 22:00:08 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193843-atari-xegs-for-sale/</guid>
	</item>
	<item>
		<title>What are your top 20 7800 games to PLAY?</title>
		<link>http://www.atariage.com/forums/topic/193842-what-are-your-top-20-7800-games-to-play/</link>
		<description><![CDATA[I want to get a 7800, i have never played one....ever!!!!<br />
<br />
What are your top 20 (or 10) that are FUN TO PLAY. .....including homebrews.<br />
<br />
I am not worried about getting any rare games for it, i want one to play and also since it plays 2600 games is another good reason.(less machines to have hooked up)<br />
<br />
Thanks!]]></description>
		<pubDate>Tue, 07 Feb 2012 21:51:42 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193842-what-are-your-top-20-7800-games-to-play/</guid>
	</item>
	<item>
		<title>Pac-Man hotheads</title>
		<link>http://www.atariage.com/forums/topic/193840-pac-man-hotheads/</link>
		<description><![CDATA[I vote this for the most stupid video game related product ever: <a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?icep_ff3=2&pub=5574883395&toolid=10001&campid=5336500554&customid=&icep_item=250990788328&ipn=psmain&icep_vectorid=229466&kwid=902099&mtid=824&kw=lg">eBay Auction -- Item Number: 250990788328</a><img style="text-decoration:none;border:0;padding:0;margin:0;" src="http://rover.ebay.com/roverimp/1/711-53200-19255-0/1?ff3=2&pub=5574883395&toolid=10001&campid=5336500554&customid=&item=250990788328&mpt=[CACHEBUSTER]">]]></description>
		<pubDate>Tue, 07 Feb 2012 21:06:04 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193840-pac-man-hotheads/</guid>
	</item>
	<item>
		<title>What would you value these games at?</title>
		<link>http://www.atariage.com/forums/topic/193839-what-would-you-value-these-games-at/</link>
		<description><![CDATA[<a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?icep_ff3=2&pub=5574883395&toolid=10001&campid=5336500554&customid=&icep_item=150747201648&ipn=psmain&icep_vectorid=229466&kwid=902099&mtid=824&kw=lg">eBay Auction -- Item Number: 150747201648</a><img style="text-decoration:none;border:0;padding:0;margin:0;" src="http://rover.ebay.com/roverimp/1/711-53200-19255-0/1?ff3=2&pub=5574883395&toolid=10001&campid=5336500554&customid=&item=150747201648&mpt=[CACHEBUSTER]"><br />
<br />
<br />
I had thought about bidding on them.<br />
<br />
Thanks<br />
<br />
Cncfreak]]></description>
		<pubDate>Tue, 07 Feb 2012 20:45:05 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193839-what-would-you-value-these-games-at/</guid>
	</item>
	<item>
		<title>reproduction sites?</title>
		<link>http://www.atariage.com/forums/topic/193838-reproduction-sites/</link>
		<description><![CDATA[I was wondering if there were any reproduction sites out there other than <a href='http://www.retrousb.com' class='bbc_url' title='External link' rel='nofollow external'>www.retrousb.com</a> <a href='http://www.thenesdump.com' class='bbc_url' title='External link' rel='nofollow external'>www.thenesdump.com</a> <a href='http://www.gamereproductions.com' class='bbc_url' title='External link' rel='nofollow external'>www.gamereproductions.com</a>			  <a href='http://www.nesreproductions.com' class='bbc_url' title='External link' rel='nofollow external'>www.nesreproductions.com</a> <a href='http://www.mutecityelectronics.com' class='bbc_url' title='External link' rel='nofollow external'>www.mutecityelectronics.com</a> and Hozer video. I was also wondering if anyone on here has had any experence with mutecityelectronics, and if it's trust worthy and quality stuff.]]></description>
		<pubDate>Tue, 07 Feb 2012 20:06:38 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193838-reproduction-sites/</guid>
	</item>
	<item>
		<title>looking for ntsc vcs 2600 sent to germany</title>
		<link>http://www.atariage.com/forums/topic/193837-looking-for-ntsc-vcs-2600-sent-to-germany/</link>
		<description><![CDATA[Hi there,<br />
I am not too sure if this post is made at the correct spot.<br />
However, I am very much looking for an ntsc 2600 console.<br />
It gets a bit tricky to use ebay.com to send stuff to germany, since most dont know/care about shipping costs and/or set it very high.<br />
Furthermore our customs require some 'bill' to be attached to the package or the package will remain at the customs like forever (easyly 2 weeks) before Im notified of that.<br />
Hence my request here. I would pay via paypal and woudl happyly pay shipping as well of course which easyly might be more than the worth of the console itself.<br />
I am only interessted in a very basic setup, meaning: just a light small junior console without PSU or joysticks (maybe an additional cart? <img src='http://www.atariage.com/forums/public/style_emoticons/atariage/icon_winking.gif' class='bbc_emoticon' alt=';-)' />.<br />
Thank you very much - maybe you can help me out.<br />
I do own PAL consoles but I want to do some tests and coding on ntsc machines (my TV screen can handle NTSC output). Yes, I am aware that the code produces the ntsc TV signal timing but I really want/need the true ntsc device.<br />
Cheers,<br />
Martin <img src='http://www.atariage.com/forums/public/style_emoticons/atariage/icon_smile.gif' class='bbc_emoticon' alt=':)' />]]></description>
		<pubDate>Tue, 07 Feb 2012 15:39:34 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193837-looking-for-ntsc-vcs-2600-sent-to-germany/</guid>
	</item>
	<item>
		<title>Did Rainbow Arts (of turrican fame) do a coin op game</title>
		<link>http://www.atariage.com/forums/topic/193836-did-rainbow-arts-of-turrican-fame-do-a-coin-op-game/</link>
		<description><![CDATA[I remember reading (some years ago) a coin op games review section of a popular UK multi platform games magazine (can't remember which one)<br />
<br />
And it was reviewing some arcade game (can't remember the name) by the german games publisher Rainbow Arts (of turrican and giana sisters fame)...it wasn't turrican, that much i know (since the coin op version was done by data east), the review itself was on the top part of the page, that is all i remember<br />
<br />
Anyone know this game (or it's title) or any of rainbow art's coin op/arcade games<br />
<br />
I do remember them mentioning that most of the game development was taking place on a pc (for this game)]]></description>
		<pubDate>Tue, 07 Feb 2012 14:41:30 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193836-did-rainbow-arts-of-turrican-fame-do-a-coin-op-game/</guid>
	</item>
	<item>
		<title>GET and PUT source (Compute magazine)</title>
		<link>http://www.atariage.com/forums/topic/193834-get-and-put-source-compute-magazine/</link>
		<description><![CDATA[Compute magazine publish source to GET and PUT functions in assembly language.<br />
The article was in issue 91, December 1987<br />
The original source hid part of the assembly as just bytes, but I hand disassembled that part of the code and included it.<br />
It's bound to have errors in the disassembly and the branches need labels, but I thought I'd pass on what I had in case someone has a use for it or wants to finish what I started.  See the article for full details.<br />
FYI, some instructions start in one BYTE statement and finish in the next.  Tabs may have gotten eaten by the look of the code.<br />
<pre class='prettyprint'>
;Compute Issue 91 Dec 87
XLSB = 214
XMSB = 215
YLSB = 216
YMSB = 218
LENGTH = 219
BYTESLSB = 220
BYTESMSB = 221
IMAGELSB = 222
IMAGEMSB = 223
CMD = 224
*= $FFFF ;Place your program's beginning assembling address here
JMP BEGIN
GET LDA #0
JMP GP
PUT LDA #1
GP STA 227
.BYTE 169,0,133,212,133,213,1
LDA #0
STA 212
STA 213

.BYTE 214,133,225,165,89,101,215,133,226,162
OR (XLSB,X)
STA 225
LDA #89
ADC XMSB
STA 226
LDX #0

.BYTE 0,228,216,240,32,165,225,24,101,220
CPX YLSB
BEQ #32
LDA 225
CLC
ADC BYTESLSB

.BYTE 133,225,165,226,101,221,133,226,165,215
STA 225
LDA 226
ADC BYTESMSB
STA 226
LDA XMSB

.BYTE 56,233,1,133,216,165,217,233,0,133
SEC
SBC #1
STA YLSB
LDA 217
SBC #0
.BYTE 217,169,0,201,0,240,220,228,217,240
STA 217
LDA #0
CMP #0
BEQ #220
CPX 217

.BYTE 6,169,0,201,0,240,214,162,1,160
BEQ #6
LDA #0
CMP #0
BEQ #214
LDX #1

.BYTE 0,196,218,240,81,165,227,201,1,208
LDY #0
CPY YMSB
BEQ #81
LDA 227
CMP #1

.BYTE 55,165,224,201,1,208,22,177,222,201
BNE #55
LDA CMD
CMP #1
BNE #22
LDA (IMAGELSB),Y
.BYTE 0,240,10,177,225,201,0,240,4,169
CMP #0
BEQ #10
LDA (225),Y
CMP #0
BEQ #4
.BYTE 1,133,212,177,222,201,0,240,20,165
LDA #1
STA 212
LDA (IMAGELSB),Y
CMP #0
BEQ #20

.BYTE 224,201,1,240,10,177,225,201,0,240
LDA CMD
CMP #1
BEQ #10
LDA (225),Y
CMP #0
.BYTE 4,169,1,133,212,177,222,145,225,200
BEQ #4
LDA #1
STA 212
LDA IMAGELSB
STA (225),Y
INY

.BYTE 169,0,201,0,240,191,177,225,201,0
LDA #0
CMP #0
BEQ #191
LDA 225
.BYTE 240,6,169,1,133,212,177,225,145,222
BEQ #6
LDA #1
STA 212
LDA 225
STA (222),Y

.BYTE 169,0,201,0,240,229,228,219,240,35
LDA #0
CMP #0
BEQ #229
CPX 219
BEQ #35

.BYTE 160,0,165,222,24,101,218,133,222,165
LDY #0
LDA IMAGELSB
CLC
ADC YMSB
STA IMAGELSB
LDA IMAGEMSB

.BYTE 223,105,0,133,223,165,225,24,101,220
ADC #0  ;add the carry bit
STA IMAGEMSB
LDA 225
CLC
ADC BYTESLSB

.BYTE 133,225,165,226,101,221,133,226,232,169
STA 225
LDA 226
ADC BYTESMSB
STA 226
INX
LDA #0
.BYTE 0,201,0,240,191,96
CMP #0
BEQ #191
RTS

;Begin your assembly language program at line 1400
; To use the routine, just store your values into the appropriate variables and do a 'JSR GET' or 'JSR PUT'
BEGIN
</pre>]]></description>
		<pubDate>Tue, 07 Feb 2012 10:57:51 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193834-get-and-put-source-compute-magazine/</guid>
	</item>
	<item>
		<title>Which is the toughest of The Big Three?</title>
		<link>http://www.atariage.com/forums/topic/193831-which-is-the-toughest-of-the-big-three/</link>
		<description><![CDATA[After reading a lot of posts, I've come to the conclusion that many agree that three of the toughest games on the NES (tough yet beatable) are:<br />
<br />
Ghosts n' Goblins<br />
Ninja Gaiden<br />
Battletoads<br />
<br />
I've beaten two, but Battletoads still eludes me.  I personally think it's the hardest one...at least in the other two, you get unlimited continues.  If Toads only had that, it would be in the same category as the others...repetition, repetition.  Eventually you'll beat it.<br />
<br />
GnG was very, very difficult back in the day.  Now, it's tough but only in terms of the clunky game mechanics.  I'd say that a game like Gradius is actually more difficult, skill-wise.  But beating GnG only to find out you had to do it all over again?...I think I just quit back in the 80s.<br />
<br />
So, I'd add two more: Punch-out and Gradius.  I've never beat Mike Tyson, but who knows....maybe one day!  Gradius gets a bit easier with practice but you need a good streak of luck too...far more challenging that any shooter on the NES I know of, other than the ridiculous Cybernoid.<br />
<br />
What do you think?]]></description>
		<pubDate>Tue, 07 Feb 2012 08:18:02 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193831-which-is-the-toughest-of-the-big-three/</guid>
	</item>
	<item>
		<title>Astrocade games, $$$ reward $$$</title>
		<link>http://www.atariage.com/forums/topic/193829-astrocade-games-reward/</link>
		<description><![CDATA[Hi,<br />
<br />
I'm looking for Astrocade games.<br />
<br />
- Bowling<br />
- LIFE<br />
- ICBM Attack<br />
- Conan<br />
- Gunfight<br />
- Median<br />
- Missile Attack<br />
- Music Maker (Original, not reproduction)<br />
- Solar Conquerer (sealed only)<br />
- Prototypes<br />
- Cassette games<br />
<br />
I'm paying top prices and a $50 reward per purchase for everyone who has a hint.<br />
<br />
Andre]]></description>
		<pubDate>Tue, 07 Feb 2012 05:26:34 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193829-astrocade-games-reward/</guid>
	</item>
	<item>
		<title><![CDATA[Let's Talk Burgertime (Burgertime Appreciation)]]></title>
		<link>http://www.atariage.com/forums/topic/193828-lets-talk-burgertime-burgertime-appreciation/</link>
		<description><![CDATA[I thought i'd start a thread to praise the great game of Burgertime and maybe get a couple odd questions answered.<br />
<br />
I'm a big fan of Burgertime. It is my favorite game of all time. I may not be the best but i love it. I own quite a few versions of it. Atari 2600, Intellivision, Colecovision, Atari 7800 (Beef Drop), Nes, PS1 (Arcade port), GB (Burgertime Deluxe), GBC (Burgertime in Bedrock). I am not completely obsessed with the game since i do love other games as well.<br />
<br />
And i am not out to collect every version in the world but i do like to pick up different versions every once in a while. I would love to own the actual arcade cabinet.<br />
<br />
Ok maybe i am slightly obsessed since i do have a Burgertime Clock coming in the mail. lol<br />
And a few other Burgertime related items that i will do a video of and post them here when i get them.<br />
Isn't that sweet looking? <img src='http://www.atariage.com/forums/public/style_emoticons/atariage/icon_smile.gif' class='bbc_emoticon' alt=':)' /><br />
<a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?icep_ff3=2&pub=5574883395&toolid=10001&campid=5336500554&customid=&icep_item=370427446478&ipn=psmain&icep_vectorid=229466&kwid=902099&mtid=824&kw=lg">eBay Auction -- Item Number: 370427446478</a><img style="text-decoration:none;border:0;padding:0;margin:0;" src="http://rover.ebay.com/roverimp/1/711-53200-19255-0/1?ff3=2&pub=5574883395&toolid=10001&campid=5336500554&customid=&item=370427446478&mpt=[CACHEBUSTER]"><br />
<br />
Ok down to the questions. I noticed there is a PS2 version of Burgertime only released in Japan as seen here <a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?icep_ff3=2&pub=5574883395&toolid=10001&campid=5336500554&customid=&icep_item=270892466523&ipn=psmain&icep_vectorid=229466&kwid=902099&mtid=824&kw=lg">eBay Auction -- Item Number: 270892466523</a><img style="text-decoration:none;border:0;padding:0;margin:0;" src="http://rover.ebay.com/roverimp/1/711-53200-19255-0/1?ff3=2&pub=5574883395&toolid=10001&campid=5336500554&customid=&item=270892466523&mpt=[CACHEBUSTER]"><br />
I am real curious to know if it is the same exact port as the one they released on the PS1 (Arcade's Greatest Hits Midway Collection 2). Especially control wise. The controls for the PS1 version was horrid. Just as bad as the Nes version which has awful ladder/level detection where you have to be right on the mark or your screwed. I wonder if that PS2 version has Analog support. The PS1 does not. I also tried using the PS1 Arcade Stick as well the Nes Advantage on that port and neither helped.<br />
<br />
On a side note i thought the controls were not that much better on the Mame version i tried once. But that was some time ago. Plus i was using a real old Side Winder controller i bought somewhere around 2000 or 2001. The Dpad is not good on it at all.<br />
<br />
So another question i have is, how well does the actual arcade control compared to the home ports? I have never had the chance to play the actual arcade machine. How is the ladder/level detection? I know from experience that the Intellivision, Colecovision and even Beef Drop have super smooth controls with no ladder detection problems whatsoever. Are the Arcade controls just as smooth or did they improve on the controls when they ported them to consoles? And maybe i shouldn't be comparing the Mame controls to the real thing?<br />
<br />
Yes i know i'm long winded. <img src='http://www.atariage.com/forums/public/style_emoticons/atariage/icon_biggrin.gif' class='bbc_emoticon' alt=':-D' />]]></description>
		<pubDate>Tue, 07 Feb 2012 05:04:29 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193828-lets-talk-burgertime-burgertime-appreciation/</guid>
	</item>
	<item>
		<title>Powerpak, Harmony Cart: thoughts on these?</title>
		<link>http://www.atariage.com/forums/topic/193826-powerpak-harmony-cart-thoughts-on-these/</link>
		<description><![CDATA[I'm about to pull the trigger on these NES and Atari mulitcarts.  I'm just wondering if there's anything that members here would like to add about them, from experience?  The Powerpak looks to be a good product and there's tons of games I'd like to try on the NES but don't really want to get the physical carts.   From most reviews, the Harmony cart (or is it Cuttle, I can't remember now, the recent one available) looks very much worth it.<br />
<br />
I've already got a Coleco Mulitcart, and I'm very happy with it (other than I bought it right before they released the SD cart version).<br />
<br />
Any tips?]]></description>
		<pubDate>Tue, 07 Feb 2012 04:52:22 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193826-powerpak-harmony-cart-thoughts-on-these/</guid>
	</item>
	<item>
		<title><![CDATA[atari2600land's Blog - Insecticide work for 2/6/12]]></title>
		<link>http://www.atariage.com/forums/topic/193827-atari2600lands-blog-insecticide-work-for-2612/</link>
		<description><![CDATA[Since my computer almost died on me (which it has done several times before, but eventually started back up), I thought it would behoove me to back up all the necessary included h files. So I did that. I also worked on changing the font. So now the font has changed. It looks like the way I wanted it to. It looks as though I'll have to make...<br />
<br />
<a href='http://www.atariage.com/forums/blog/168/entry-8873-insecticide-work-for-2612/' class='bbc_url' title=''>http://www.atariage.com/forums/blog/168/entry-8873-insecticide-work-for-2612/</a>]]></description>
		<pubDate>Tue, 07 Feb 2012 03:50:00 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193827-atari2600lands-blog-insecticide-work-for-2612/</guid>
	</item>
	<item>
		<title><![CDATA[Wanted: 5.25&#34; Head Cleaning Disk]]></title>
		<link>http://www.atariage.com/forums/topic/193824-wanted-525-head-cleaning-disk/</link>
		<description>I used to have a few of these and they got lost somehow. Anyone have any extras?</description>
		<pubDate>Tue, 07 Feb 2012 03:39:30 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193824-wanted-525-head-cleaning-disk/</guid>
	</item>
	<item>
		<title>Hack, Slash, Loot</title>
		<link>http://www.atariage.com/forums/topic/193823-hack-slash-loot/</link>
		<description><![CDATA[<a href='http://hackslashloot.com/' class='bbc_url' title='External link' rel='nofollow external'>http://hackslashloot.com/</a><br />
<br />
Don&rsquo;t know if anyone has heard of it, but I ran across a nifty little roguelike called Hack, Slash, Loot.<br />
<br />
Very simple to learn, not simple to win lol.  You have no inventory to manage, aside from the lower corner, you only have what you wear/are holding.  It&rsquo;s entirely played with the mouse.  <br />
<br />
 <img src='http://www.atariage.com/forums/public/style_emoticons/atariage/icon_smile.gif' class='bbc_emoticon' alt=':)' />]]></description>
		<pubDate>Tue, 07 Feb 2012 03:25:47 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193823-hack-slash-loot/</guid>
	</item>
	<item>
		<title>WTB: Jaguar AV Cable</title>
		<link>http://www.atariage.com/forums/topic/193822-wtb-jaguar-av-cable/</link>
		<description><![CDATA[As stated, looking for a S-video cable for the Atari Jaguar <img src='http://www.atariage.com/forums/public/style_emoticons/atariage/icon_smile.gif' class='bbc_emoticon' alt=':)' /><br />
<br />
Thanks]]></description>
		<pubDate>Tue, 07 Feb 2012 01:58:27 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193822-wtb-jaguar-av-cable/</guid>
	</item>
	<item>
		<title>Adventure 2 ranks?</title>
		<link>http://www.atariage.com/forums/topic/193821-adventure-2-ranks/</link>
		<description><![CDATA[Sorry if this got asked before, I searched and didn't find. But what are the ranks in Adventure 2? I managed to get Chalice Master tonight on difficulty lvl 3 and wondered how high up that is. Still enjoying this game even years after it's release. I would totally love to see and purchase an Adventure 3.<br />
<br />
Thanks,<br />
<br />
Dave]]></description>
		<pubDate>Tue, 07 Feb 2012 01:55:24 +0000</pubDate>
		<guid>http://www.atariage.com/forums/topic/193821-adventure-2-ranks/</guid>
	</item>
</channel>
</rss>
