Search found 4 matches
- Thu Oct 07, 2021 8:25 am
- Forum: Introductions
- Topic: Using CMDR-DOS in 65c02 assembly
- Replies: 6
- Views: 4775
Using CMDR-DOS in 65c02 assembly
Ah, so I made a mistake by using the execute_dos_command function with the POSITION command. The function expects an input string to end with a null terminator (0x00). Since the arguments for the POSITION command are binary, it is likely that one of the five arguments will be 0x00. I've created a n...
- Sat Oct 02, 2021 2:30 am
- Forum: Introductions
- Topic: Using CMDR-DOS in 65c02 assembly
- Replies: 6
- Views: 4775
Using CMDR-DOS in 65c02 assembly
Hello again everyone. I've been wanting to make a game for the X16 lately, but for what I want to do I needed to figure out a good way to stream data off a file from any random position. You can't do that yet within the r38 emulator (as far as I know). You would have to split up the file into small...
- Fri Dec 25, 2020 6:32 am
- Forum: Introductions
- Topic: Using CMDR-DOS in 65c02 assembly
- Replies: 6
- Views: 4775
Using CMDR-DOS in 65c02 assembly
<blockquote class="ipsQuote" data-ipsquote="" data-ipsquote-contentapp="forums" data-ipsquote-contentclass="forums_Topic" data-ipsquote-contentcommentid="5379" data-ipsquote-contentid="703" data-ipsquote-contenttype="forums" data-ipsquote-timestamp="1608869214" data-ipsquote-userid="277" data-ipsquo...
- Wed Nov 18, 2020 3:33 pm
- Forum: Introductions
- Topic: Using CMDR-DOS in 65c02 assembly
- Replies: 6
- Views: 4775
Using CMDR-DOS in 65c02 assembly
I couldn't find any resources on how to create and change directories on the SD card using assembly, so I wrote some helper functions based off the code in "x16-rom/basic/x16additions.s". These functions show how to use the KERNAL API to send commands and get file/directory names from CMDR-DOS. I w...