6502.org Forum  Projects  Code  Documents  Tools  Forum
It is currently Fri Sep 20, 2024 6:44 am

All times are UTC




Post new topic Reply to topic  [ 15 posts ] 
Author Message
PostPosted: Mon May 06, 2019 5:05 am 
Offline
User avatar

Joined: Fri Aug 30, 2002 1:09 am
Posts: 8510
Location: Southern California
Bruce suggested having a wish list for 6502 technical information you'd like to see added to the non-forum part of the site. Feel free to write up wishes. (Mike has already accumulated a voluminous collection; so do make sure that the info you're wishing for is not already there.) You don't necessarily have to have a particular project in mind. Just put the wishes here, with minor discussion. This is not the place for lengthy discussions about each subject or projects you have in mind. Please use or start other topics for those. Thanks.

_________________
http://WilsonMinesCo.com/ lots of 6502 resources
The "second front page" is http://wilsonminesco.com/links.html .
What's an additional VIA among friends, anyhow?


Top
 Profile  
Reply with quote  
PostPosted: Tue May 07, 2019 3:04 am 
Offline
User avatar

Joined: Tue Mar 05, 2013 4:31 am
Posts: 1382
I've recently looked through the documents and code areas of the site. There is a lot of info there, much of it very old, as would be the case for the NMOS 6502. One thing I don't find a lot of are code examples that leverage the additional CMOS instructions that were added later (WD65C02S). I would also note that even the Eyes and Lichty Programming manual only mention some of the later added opcodes under the Rockwell version in the appendix, but not for the WDC version. These were added later to the WDC part.

Perhaps some code examples on using some of these newer opcodes and addressing modes would be useful. I've used many of them in my recent projects and they have proven very useful. Perhaps I'm being a bit narrow-minded on this, but I think it's worth updating or adding new code examples that use the newer CMOS instructions and show the benefit they provide.

Just my $0.02

_________________
Regards, KM
https://github.com/floobydust


Top
 Profile  
Reply with quote  
PostPosted: Tue May 07, 2019 5:35 am 
Offline
User avatar

Joined: Sun Jun 30, 2013 10:26 pm
Posts: 1948
Location: Sacramento, CA, USA
Yeah, I remember being impressed by Ross Archer's improvement to PRIMM here, and devised a 65c02 version that doesn't trash Y and is even shorter:
Code:
DPL     =   $fd
DPH     =   $fe
primm:
      pla               ; get low part of (string address-1)
      sta   DPL
      pla               ; get high part of (string address-1)
      sta   DPH
      bra   primm3
primm2:
      jsr   COUT        ; output a string char
primm3:
      inc   DPL         ; advance the string pointer
      bne   primm4
      inc   DPH
primm4:
      lda   (DPL)       ; get string char
      bne   primm2      ; output and continue if not NUL
      lda   DPH
      pha
      lda   DPL
      pha
      rts               ; proceed at code following the NUL


P.S. I found another one for those who don't mind trashing y, in only 25 bytes:
Code:
DPL     =   $fd
DPH     =   $fe
primm:
      ply               ; get low part of string address -1
      pla               ; get high part of string address -1
      sta   DPH
      stz   DPL
      bra   primm3
primm2:
      jsr   COUT        ; output a string char
primm3:
      iny               ; advance the string pointer
      bne   primm4
      inc   DPH
primm4:
      lda   (DPL),y     ; get string char
      bne   primm2      ; output and continue if not NUL
      lda   DPH
      pha
      phy
      rts               ; proceed at code following the NUL

_________________
Got a kilobyte lying fallow in your 65xx's memory map? Sprinkle some VTL02C on it and see how it grows on you!

Mike B. (about me) (learning how to github)


Last edited by barrym95838 on Sun Jun 02, 2019 5:07 am, edited 1 time in total.

Top
 Profile  
Reply with quote  
PostPosted: Tue May 07, 2019 1:40 pm 
Offline
User avatar

Joined: Tue Mar 05, 2013 4:31 am
Posts: 1382
I also like using the additional instructions introduced with the Rockwell R65C02 (and later included with the W65C02):

RMBx - Reset a memory bit to zero in a page zero location
SMBx - Set a memory bit to one in a page zero location

BBRx - Branch on a memory bit reset to zero in a page zero location
BBSx - Branch on a memory bit set to one in a page zero location

note: x = 0-7

In a lot of older coding examples, a page zero location would be used as a flag byte for a specific routine, and checking for it being $00 or $FF, then branching accordingly. The newer instructions allow you to leverage a single page zero byte as eight separate flag bits. Much more efficient use of a single page zero location.

A simple example from my monitor code follows. Granted, this only saves a single byte of ROM space versus separate routines, but sometimes saving that one byte really helps :shock:

Code:
;[CNTL-R] Reset System command: Resets system by calling Coldstart routine. Page zero is
; cleared, vectors and config data re-initialized from ROM. All I/O devices are reset from
; initial ROM parameters. Monitor cold start is entered.
SYS_RST         LDA     #$20            ;Get msg "Reset System"
                SMB0    CMDFLAG         ;Set bit0 of command flag
                BRA     RST_ONLY        ;Branch below and handle reset
;
;[CNTL-Z] Zero command: zero RAM from $0100-$7FFF and Reset
ZERO            LDA     #$1F            ;Get msg "Zero RAM/Reset System"
RST_ONLY        JSR     PROMPT          ;Send to terminal
                JSR     CONTINUE        ;Prompt for Continue
                BBS0    CMDFLAG,DO_COLD ;Branch if reset only
                SEI                     ;Disable IRQs
                LDA     #$01            ;Initialize address pointer to $0100
                STA     $01             ;Store to pointer high byte
                STZ     $00             ;Zero address low byte
                DEC     A               ;LDA #$00
ZEROLOOP        STA     ($00)           ;Write $00 to current address
                INC     $00             ;Increment address pointer
                BNE     ZEROLOOP        ;Loop back until done
                INC     $01             ;Increment page
                BPL     ZEROLOOP        ;Loop back IF address pointer < $8000
DO_COLD         JMP     B_COLDSTRT      ;Jump to coldstart vector
;

_________________
Regards, KM
https://github.com/floobydust


Top
 Profile  
Reply with quote  
PostPosted: Tue May 07, 2019 5:31 pm 
Offline
Site Admin
User avatar

Joined: Fri Aug 30, 2002 1:08 am
Posts: 281
Location: Northern California
GARTHWILSON wrote:
Bruce suggested having a wish list for 6502 technical information you'd like to see added to the non-forum part of the site.

I would like to add datasheets for all known 6502-like microcontrollers. The Renesas/Mitsubishi 740 series and Generalplus/Sunplus chips come to mind. I recently added a Mitsubishi section with one datasheet for a chip that I worked with. There are many more chips. The part numbers need to be identified and the datasheets collected. There are probably many datasheets online already at the manufacturers' websites and other sources. I would appreciate any help rounding them up.

_________________
- Mike Naberezny (mike@naberezny.com) http://6502.org


Top
 Profile  
Reply with quote  
PostPosted: Fri May 10, 2019 3:13 am 
Offline
User avatar

Joined: Fri Dec 11, 2009 3:50 pm
Posts: 3367
Location: Ontario, Canada
As a further comment regarding datasheets, I think it would be helpful to add an index that lists the chips according to the generic number (rather than by manufacturer). For example several companies make a 6522, and it would handy to become aware of all those 6522's (and 65C22's) without going through 10 or 12 manufacturer folders.

BTW I have a 65816 datasheet from CMD I'd be happy to contribute (possibly one from VLSI Technology, too); also a copy of the Apple IIgs Hardware Manual which extensively describes the '816 in Chapter 10. These could be useful for cross-checking, given that WDC's '816 doc isn't the greatest.

-- Jeff

_________________
In 1988 my 65C02 got six new registers and 44 new full-speed instructions!
https://laughtonelectronics.com/Arcana/ ... mmary.html


Top
 Profile  
Reply with quote  
PostPosted: Fri May 10, 2019 6:33 am 
Offline
Site Admin
User avatar

Joined: Fri Aug 30, 2002 1:08 am
Posts: 281
Location: Northern California
Dr Jefyll wrote:
As a further comment regarding datasheets, I think it would be helpful to add an index that lists the chips according to the generic number (rather than by manufacturer). For example several companies make a 6522, and it would handy to become aware of all those 6522's (and 65C22's) without going through 10 or 12 manufacturer folders.

I agree. I have wanted this myself at times.

Quote:
BTW I have a 65816 datasheet from CMD I'd be happy to contribute (possibly one from VLSI Technology, too); also a copy of the Apple IIgs Hardware Manual which extensively describes the '816 in Chapter 10. These could be useful for cross-checking, given that WDC's '816 doc isn't the greatest.

Thank you and I would be happy to add them to the archive. Please send me a private message or email and we'll work out the details. If you would like to scan them, then I'll just post your scans. If you would like to mail me the original paper, I will scan and return them (unless you tell me to keep them).

_________________
- Mike Naberezny (mike@naberezny.com) http://6502.org


Top
 Profile  
Reply with quote  
PostPosted: Mon May 13, 2019 3:29 am 
Offline
User avatar

Joined: Thu Mar 11, 2004 7:42 am
Posts: 362
This isn't really a personal wish list, but I can think of a number of projects that might be of general interest, and might help fill in a few of the (minor) blanks. In no particular order:

  • 65C816 test suite - a resonably complete suite will be large, but this can be developed and released incrementally. A few instruction and addressing mode tests are better than nothing.
  • Compression: RLE - this might make a nice introduction to compression tutorial and both the compressor and decompressor can be easily implemented on a 8-bit micro with 16-bit address bus, and are short and easy to understand.
  • Disassembly: Apple I BASIC and/or Apple II Integer BASIC - a fully commented disassembly listing with meaningful label names, notes on program and variable storage, (data) stack usage, zero page usage, and syntax table tokens would be educational and useful for anyone interesting porting (or patching) it. Such disassemblies exist for Microsoft BASICs (e.g. S-C DocuMentor for Applesoft), but the disassemblies for Apple I and Integer BASIC are a nice start, but not at that level of detail.
  • Disassembly: KIM Focal - likewise for KIM focal; there are disassemblies, but not at such a high level of detail
  • Disassembly: Tiny BASIC - likewise for Tiny BASIC
  • Documentation: 65C02 instructions cycle-by-cycle behavior, including guaranteed NOPs - the equivalent to the cycle-by-cycle behavior of Table 5-7 in the (November 9, 2019) 65C816 Datasheet is in the March 2000 data sheet here at 6502.org (that part can be solved with a simple web page link), but it might also be useful to have the cycle-by-cycle behavior of the guaranteed NOPs (not all are 1 cycle).
  • Documentation: NMOS 6502 undocumented opcodes - there are several places on the web where you can find this information, but it might be nice to compile the various names that have been given to these opcodes in a single place. Furthermore, now that Visual 6502 exists, it should be possible to document the cycle-by-cycle behavior (like Table 5-7) for all of these instructions. (Cycle-by-cycle behavior for the documented instruction is in the Synertek Programming Manual.)
  • EhBASIC: replace LAB_XXXX labels with meaningful names - its one thing to have LAB_XXXX (where XXXX is a 4 digit hex number) for (the equivalent of) local labels, but there are many instances of LAB_XXXX for subroutines (e.g. copying FAC1 to FAC2) and mathematical constants. An awk (or whatever) script that replaces these labels with more meaningful ones would be nice. You don't even have to think of label names, you can use the ones in S-C DocuMentor.
  • EhBASIC: document zero page usage - a document describing the zero page usage (how many bytes a zero page variable uses, and what it's used for) might be helpful when you have zero page conflicts. This is trickier than it looks; for example, Adatal looks like it only uses 2 bytes, and it does in some cases, but it's also used to temporarily store a floating point value and in those cases it uses 4 bytes, and you need to be careful whats in the 2 bytes after Adatah.
  • Math: The standard unsigned multiplication and division algorithm - a document that describes the standard shift-and-add (for multiplication) or shift-and-subtract (for division) algorithms might be helpful for beginners. Nothing fancy, no optimization tricks, just the basic routines, and how and why they work. It's not hard to understand, but I suspect those of us who are more experienced with the 6502 tend to take this for granted, and I wonder how clear it is to beginners. Signed multiplication and division could be a sequel tutorial.
  • Math: Fast multiplication: AB = ((A+B)^2 - (A-B)^2) / 4 -- it might be nice to have a tutorial that explains this multiplication technique, along with a routine that generates the tables of squares, and a unit test.
  • Sort: Heapsort implementation - the repository has a Shellsort routine with a O(N^(3/2)) implementation. A Heapsort routine is O(N log N) worst case, is suitable for a 8-bit processor with 16-bit address space (it's in place), and is relatively easy to understand.
  • 65C816 BASIC - this is obviously a pretty big project, and there's no guarantee that it would be all that popular, but I suspect there's at least a few people who'd be interested in a BASIC that was written for the 65C816 (e.g. allowing arrays larger than 64k), and not just a 6502 BASIC running in emulation mode or 8-bit native mode.


Top
 Profile  
Reply with quote  
PostPosted: Tue May 14, 2019 12:24 am 
Offline
User avatar

Joined: Sun Nov 27, 2011 12:03 pm
Posts: 229
Location: Amsterdam, Netherlands
dclxvi wrote:
65C816 BASIC - this is obviously a pretty big project, and there's no guarantee that it would be all that popular, but I suspect there's at least a few people who'd be interested in a BASIC that was written for the 65C816 (e.g. allowing arrays larger than 64k), and not just a 6502 BASIC running in emulation mode or 8-bit native mode.

I've made something going in that general direction for http://www.zeridajh.org/hardware/reco6502/index.htm. It's an existing 65C02 coded BASIC, but I changed it so that all program variables are stored in above-64KB memory and manipulated by '816 24-bit addressing.


Top
 Profile  
Reply with quote  
PostPosted: Tue May 14, 2019 12:51 am 
Offline

Joined: Sat Jun 04, 2016 10:22 pm
Posts: 483
Location: Australia
One thing I've noticed as I was looking for an alternative 65816 assembler was that there are a number of dead links on the site. It'd probably be a good idea to remove them, and perhaps keep a note of them, so they can be restored if a new link comes up later.


Top
 Profile  
Reply with quote  
PostPosted: Tue May 14, 2019 1:40 am 
Offline
Site Admin
User avatar

Joined: Fri Aug 30, 2002 1:08 am
Posts: 281
Location: Northern California
DerTrueForce wrote:
One thing I've noticed as I was looking for an alternative 65816 assembler was that there are a number of dead links on the site. It'd probably be a good idea to remove them, and perhaps keep a note of them, so they can be restored if a new link comes up later.

Please tell me specifically which links are broken and I will fix or remove them.

_________________
- Mike Naberezny (mike@naberezny.com) http://6502.org


Top
 Profile  
Reply with quote  
PostPosted: Tue May 14, 2019 1:45 am 
Offline

Joined: Mon May 21, 2018 8:09 pm
Posts: 1462
Routines and/or a complete program and/or a complete minimalist testbed with schematic and ROM, to positively identify an unknown/suspect 6502-family CPU, since there are so many fakes out there.

At minimum it should distinguish NMOS from CMOS, 65816 from 6502, whether zero-page bit-manipulation opcodes work, and check whether Decimal mode and ROR/ROL work correctly. Preliminary research suggests all these should be reasonably straightforward. There may also be ways to see whether WAI and STP are implemented; WAI can be tested, for example, with the aid of a cycle-accurate counter with IRQ on timeout, as provided by the 6522 and some of the better UARTs.

Optional: check also for common simulator mistakes (non-standard Decimal behaviour, for instance, or incorrectly combining CMOS/NMOS characteristics); report everything in a human-readable way (not like Klaus' otherwise excellent test suite, where you have to observe at which address it goes into an infinite loop); check for rare derivatives of the 6502 family with extra and/or missing features.

A hardware solution for this could forego setting up a standard SBC-like machine in favour of a minimal breadboard hookup to a Raspberry Pi. Or it could be a basic, cheap, robust SBC design with just the ROM space and I/O handled by a Raspberry Pi with set/reset wait-states (giving the Pi as much time as it wants to respond). Or it could be a complete SBC with a UART (or a 6522 and a built-in display) and a pre-burned ROM. The point is to be as foolproof as is practical in a hobbyist context, where a newbie hobbyist might need to test his only/first CPU without first having assembled his own SBC.

Implementation details to another thread…


Top
 Profile  
Reply with quote  
PostPosted: Tue May 14, 2019 2:12 am 
Offline

Joined: Tue Oct 02, 2018 4:22 am
Posts: 48
More of a project request than documentation. A simulator with common hardware options. Define a ram address space, 6551 or 6850 at your configured address, 6522 and other common chips.

Basically simulate a basic an sbc so we can develop code or test ported code more easily.

Edit: 6 months later I stumbled on Symon which does most of what I was looking for.
https://github.com/sethm/symon


Last edited by thedrip on Wed Nov 27, 2019 3:49 am, edited 1 time in total.

Top
 Profile  
Reply with quote  
PostPosted: Tue May 21, 2019 1:08 am 
Offline

Joined: Mon Sep 14, 2015 8:50 pm
Posts: 110
Location: Virginia USA
Here https://www.fadden.com/apple2/hdc/index.html is a 12 course tutorial on data compression. Code is C and 65816 native assembly.

Cheers,
Andy


Top
 Profile  
Reply with quote  
PostPosted: Tue May 21, 2019 2:00 am 
Offline
User avatar

Joined: Sun Jun 30, 2013 10:26 pm
Posts: 1948
Location: Sacramento, CA, USA
Those write-ups are very nicely done, Andy!

_________________
Got a kilobyte lying fallow in your 65xx's memory map? Sprinkle some VTL02C on it and see how it grows on you!

Mike B. (about me) (learning how to github)


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 15 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 10 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to: