Search found 7 matches

by thomasparlette
Fri Apr 15, 2016 11:23 am
Forum: Newbies
Topic: Hello all
Replies: 11
Views: 1392

Re: Hello all

I was rereading GARTHWILSON Primer again this morning and realized the same thing. Tonight I am hopping to wire up the RAM but until then I made the following changes to test before adding more I/C's.


; Assembler Setup & Configure
.CR 6502
.TF C:\Software\sbasm3\Projects\Bin\test_2.bin,BIN
.IN ...
by thomasparlette
Wed Apr 13, 2016 3:34 am
Forum: Newbies
Topic: Hello all
Replies: 11
Views: 1392

Re: Hello all

Yea they are I made a small mistake retypeing in on my other computer I don't have internet (network card failed) on my programming machine so I retypeing in the code when I made that post here sorry about that.
by thomasparlette
Wed Apr 13, 2016 3:19 am
Forum: Newbies
Topic: Hello all
Replies: 11
Views: 1392

Re: Hello all

ok I see that issue Here is the updated code. I am still having the same issue.

.CR 6502
.TF c:\sbasm3\Projects\Bin\test.bin,BIN
.IN c:\sbasm3\Projects\Include\VIA_Setup.65s
MSCNT .EQ 199
YCNT .EQ 1
.OR $0000
LDA #0
STA PCR
LDA #$FF
STA DDRB
Start: LDA #$66
STA PORTB
LDY YCNT
JSR Delay ...
by thomasparlette
Wed Apr 13, 2016 2:48 am
Forum: Newbies
Topic: Hello all
Replies: 11
Views: 1392

Re: Hello all

Update I programmed the ROM with a lot of NOP codes in place of the jumps commands to just retest to make sure it is not an hardware issue and I got it to change the display. So I think it may be something todo with my jump code that is causing the issue but just can't figure out what it is.

Thanks ...
by thomasparlette
Wed Apr 13, 2016 2:42 am
Forum: Newbies
Topic: Hello all
Replies: 11
Views: 1392

Re: Hello all

I looked at my code again and I am just loading A with data from location 50 then checking to see if the data at that point is 10 or more. Then displaying the number. I tried changing to to LDX and it still didn't work. I scaled down the program a lot just to check the function of the Delay task ...
by thomasparlette
Wed Apr 13, 2016 2:22 am
Forum: Newbies
Topic: Hello all
Replies: 11
Views: 1392

Re: Hello all

Lol wow yea I just saw that. Thanks I will try that and let you know.
by thomasparlette
Wed Apr 13, 2016 1:27 am
Forum: Newbies
Topic: Hello all
Replies: 11
Views: 1392

Hello all

Hello all I am new to the 6502 world. I just started building my own SY6502 system. So far I have the SY6502 running at 2MHz with an SY6522 wired up on a bread board. I also wired up an 28HC64 EEPROM. Still working on the RAM (waiting on another breadboard to show up. I have also started to wire up ...