[stella] redline problem????

Subject: [stella] redline problem????
From: Maxime Beauvais <maximebeauvais@xxxxxxxxx>
Date: Mon, 8 Jul 2002 11:57:05 -0700 (PDT)
Hi,

I'm looking at Kirk Tutorial.

I'm have an error when I'm trying to dasm: my first
program redline.

I have did a copy and paste of this in my notebook:



; thin red line by Kirk Israel
	
	processor 6502
	include vcs.h
	org $F000
Start
	SEI	
	CLD  	
	TXS	
	LDX #$FF	
	LDA #0		
ClearMem 
	STA 0,X		
	DEX		
	BNE ClearMem	
	LDA #$00		
	STA COLUBK	
	LDA #33
	STA COLUP0
MainLoop
	LDA  #2
	STA  VSYNC	
	STA  WSYNC	
	STA  WSYNC 	
	STA  WSYNC	
	LDA  #43	
	STA  TIM64T	
	LDA #0		
	STA  VSYNC 	

WaitForVblankEnd
	LDA INTIM	
	BNE WaitForVblankEnd	
	LDY #191 	

	STA VBLANK  	
	LDA #$F0	
	STA HMM0	

	STA WSYNC	
	STA HMOVE 	
ScanLoop 
	STA WSYNC 	
	LDA #2		
	STA ENAM0	
	DEY		
	BNE ScanLoop	

	LDA #2		
	STA WSYNC  	
	STA VBLANK 	
	LDX #30		
OverScanWait
	STA WSYNC
	DEX
	BNE OverScanWait
	JMP  MainLoop      
 
	org $FFFC
	.word Start
	.word Start



Now when I go into dos and I'm typing:

dasm redline.asm -f3 -oredline.bin

I have the following error:

Error: source is not resolvable.
re-run with verbose option 2 or higher to determine
problem

Any help??

THANKS

__________________________________________________
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com
----------------------------------------------------------------------------------------------
Archives (includes files) at http://www.biglist.com/lists/stella/archives/
Unsub & more at http://www.biglist.com/lists/stella/


Current Thread