6502.org Forum  Projects  Code  Documents  Tools  Forum
It is currently Sat Sep 28, 2024 10:18 am

All times are UTC




Post new topic Reply to topic  [ 12 posts ] 
Author Message
 Post subject: Kowalski Port Updates
PostPosted: Tue May 07, 2024 4:44 am 
Offline
User avatar

Joined: Tue Feb 28, 2023 11:39 pm
Posts: 220
Location: Texas
Figured I should put status up dates for my efforts to port the code here.

The current status is that I've gotten the code to compile, and I can now load up and edit assembly files.

My next task is to get it to load binaries and run the simulator itself.

Here's a screen shot of the current state running on Linux and Windows.
(My Linux box is forwarding its X11 requests to my Windows machine)


Attachments:
Screenshot 2024-05-06 234041.png
Screenshot 2024-05-06 234041.png [ 129.19 KiB | Viewed 1610 times ]
Top
 Profile  
Reply with quote  
PostPosted: Tue May 07, 2024 5:07 am 
Offline
User avatar

Joined: Fri Aug 30, 2002 9:02 pm
Posts: 1738
Location: Sacramento, CA
looking good - thanks for the update!

Daryl

_________________
Please visit my website -> https://sbc.rictor.org/


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

Joined: Fri Dec 11, 2009 3:50 pm
Posts: 3367
Location: Ontario, Canada
Yuri wrote:
my efforts to port the code
For context, see this post and others which follow in the topic "Kowalski Simulator Updates."

-- Jeff

Yuri wrote:
I'm thinking that I will try branching and seeing if I can port it to using wxWidgets or something so folks can run it on other OSes than Windows.

_________________
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: Thu Jul 04, 2024 9:44 pm 
Offline
User avatar

Joined: Tue Feb 28, 2023 11:39 pm
Posts: 220
Location: Texas
Just a quick update on this.

I now have an automatic build setup on github that will build both Windows and Linux when code is checked in. Hopefully this will be a good start on a simple CD/CI pipeline to have builds and releases automated.

This will also afford automatic unit testing in the future, and building in a clean build environment.

Added a raw binary format loader, and I'm going to proceed with getting the simulator itself to run with some basic 6502 diagnostic software.


Top
 Profile  
Reply with quote  
PostPosted: Sun Jul 28, 2024 1:25 pm 
Offline
User avatar

Joined: Tue Feb 28, 2023 11:39 pm
Posts: 220
Location: Texas
Changes from 1.4.0.3 have been merged into the wx_port branch.


Top
 Profile  
Reply with quote  
PostPosted: Thu Aug 01, 2024 9:23 am 
Offline
User avatar

Joined: Tue Feb 28, 2023 11:39 pm
Posts: 220
Location: Texas
Okay, after some head bashing from a weird NULL de-reference bug in wxWidgets, that I still haven't quite figured out, I was able to get the assembler to run on a dirt simple assembly file.

Still needs work in that department; however it is progress.

Next up will be to try and actually run the simulator.

EDIT:
For reference this is where the NULL error is/was.... The debugger wouldn't even let me step into the line..... >_<

Attachment:
Screenshot 2024-08-01 021316.png
Screenshot 2024-08-01 021316.png [ 259 KiB | Viewed 1325 times ]


Top
 Profile  
Reply with quote  
PostPosted: Fri Aug 09, 2024 9:44 pm 
Offline
User avatar

Joined: Tue Feb 28, 2023 11:39 pm
Posts: 220
Location: Texas
Working on the memory display:

This is what I have working in action on Linux
Attachment:
Screenshot 2024-08-09 164205.png
Screenshot 2024-08-09 164205.png [ 112.27 KiB | Viewed 1232 times ]


I'd like to be able to support displaying different character sets in the right there. (E.g. Petscii)
Are there any other character sets that might be good to show there?


Top
 Profile  
Reply with quote  
PostPosted: Sun Aug 18, 2024 1:51 am 
Offline

Joined: Sun Nov 08, 2009 1:56 am
Posts: 398
Location: Minnesota
ATASCII, maybe. Screen code glyphs, maybe, in case a program is not bothering to convert whatever version of ASCII its host uses to screen codes at run time.


Top
 Profile  
Reply with quote  
PostPosted: Sun Aug 18, 2024 2:13 am 
Offline

Joined: Thu Aug 15, 2024 10:58 pm
Posts: 4
Yuri wrote:
Working on the memory display:

I'd like to be able to support displaying different character sets in the right there. (E.g. Petscii)
Are there any other character sets that might be good to show there?


You might use the Unicode control pictures to display the ASCII control codes rather than blanks:
https://www.compart.com/en/unicode/block/U+2400

Attachment:
Screenshot from 2024-08-17 21-11-09.png
Screenshot from 2024-08-17 21-11-09.png [ 292.79 KiB | Viewed 739 times ]


Top
 Profile  
Reply with quote  
PostPosted: Sun Aug 18, 2024 3:16 am 
Offline
User avatar

Joined: Fri Aug 30, 2002 1:09 am
Posts: 8520
Location: Southern California
Yuri wrote:
I'd like to be able to support displaying different character sets in the right there. (E.g. Petscii)
Are there any other character sets that might be good to show there?

I haven't been following this closely; but do you have code page 437?  It's what the pre-Windows IBM PCs used, and has the special characters we use a lot in engineering like ± µ ° ² Φ Ω etc., and a lot of characters that are good for drawing boxes and diagrams.  All the Epson dot-matrix impact printers (which they still make and sell about a dozen models of) support this set natively, so I loaded it also into my HP-71B hand-held computer to override its own Roman-8 set.

_________________
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: Sun Aug 18, 2024 3:43 am 
Offline
User avatar

Joined: Tue Feb 28, 2023 11:39 pm
Posts: 220
Location: Texas
teamtempest wrote:
ATASCII, maybe. Screen code glyphs, maybe, in case a program is not bothering to convert whatever version of ASCII its host uses to screen codes at run time.


I'll take a look at that one

jcollie wrote:
You might use the Unicode control pictures to display the ASCII control codes rather than blanks:


For Un*x (and presumably Mac) it should already be UTF-8, though it complains a bit if I try to print character 127 (which is a delete character)

Windows has it's own crazy NOT QUITE UTF-16, but IIRC Microsoft has some character set translation functions.

GARTHWILSON wrote:
I haven't been following this closely; but do you have code page 437?


Don't think that should be an issue.


So far the memory dump is working, and the assembler is able to parse my derp test program:
Attachment:
Screenshot 2024-08-17 224008.png
Screenshot 2024-08-17 224008.png [ 61.4 KiB | Viewed 732 times ]


The jump to edit is much like the old goto dialog, but now you can just type in there.
Recognizes decimal, 6502/C style hex addresses.
Also handles special cases of: "zp", "zeropage", "sp", "stack" and "stackpointer" to jump straight to those locations.

You can also prefix with a + or - to do a relative jump.


Top
 Profile  
Reply with quote  
PostPosted: Sun Aug 18, 2024 3:55 am 
Offline

Joined: Thu Aug 15, 2024 10:58 pm
Posts: 4
Yuri wrote:
jcollie wrote:
You might use the Unicode control pictures to display the ASCII control codes rather than blanks:


For Un*x (and presumably Mac) it should already be UTF-8, though it complains a bit if I try to print character 127 (which is a delete character)


Unicode provides a replacement for DEL/0x7f too:

https://www.compart.com/en/unicode/U+2421


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

All times are UTC


Who is online

Users browsing this forum: No registered users and 3 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: