Jump to content

16kRAM

Members
  • Posts

    42
  • Joined

  • Last visited

1 Follower

Recent Profile Visitors

3,621 profile views

16kRAM's Achievements

Space Invader

Space Invader (2/9)

82

Reputation

  1. One (perhaps) unsatisfactory workaround is to find an alternate version of the games that are exhibiting this behavior. I suggest trying the Homesoft collection, either at http://mushca.com/f/atari/ or at tnfs://atari-apps.irata.online/Atari_8-bit/Games/Homesoft. From the Irata TNFS server, it is possible to copy the Homesoft xex files to your personal TNFS server using the Copy feature found in CONFIG. Regarding Galaxian, here is the code at $5580. This is the entry point of the program - defined in the binary file's RUNAD block ($02E0..$02E1) At $5584-$558A, you can see $5500 being loaded into DOSINI (00 --> DOSINI & 55 --> DOSINI+1). DOSINI doubles as the Cassette's Run Address. Presumably, after the warm start, execution should commence at $5500. With that thought, (if one is feeling a bit hacky), it is possible to modify your copy of the Fandal Galaxian.xex so that the binary file's RUNAD is $5500 instead of $5580 and it will skip this warm start code. Though I'm sure the last thing the world needs is another variant of a game image. I've done no more than boot this XEX so something may break during play. So in a modern hex editor, open the Fandal Galaxian.xex, scroll to the bottom of the file and change the last 2 bytes from 80 55 to 00 55 and save. BEFORE AFTER Looking at $5500, it is indeed as @twh/f2 noted, in the Fandal Galaxian, there is code related to a cassette version.
  2. Using the FujiNet, I'm able to reproduce the error mounting this Galaxian XEX to a device slot and booting. https://a8.fandal.cz/detail.php?files_id=1942 My understanding is that for loading XEX files via CONFIG, the FujiNet concocts a blank MyPicoDos ATR image and injects the XEX file onto it. From Linux, creating a MyPicoDos ATR file using dir2atr for this Galaxian binary results in similar behavior (constantly resetting). dir2atr -b PicoBoot406 galaxian.atr galaxian (where "galaxian" is a directory containing "galaxian.xex") However, grabbing a random joust.xex from my folder, I was able to create an ATR that boots successfully. dir2atr -b PicoBoot406 joust.atr joust (where "joust" is a directory containing "joust.xex") Perhaps some incompatibility exists between this galaxian.xex binary file and the MyPicoDos's binary loader. The binary file blocks for galaxian.xex are straight-forward enough. ataricom 0.30-200502 (c) 2008-2020 Matthias Reichl <hias@horus.com> block 1: 5500-75ff (bytes: 2100, offset: 6) block 2: 02e0-02e1 (bytes: 2, offset: 210a) RUN: 5580 So it will take some tracing to better understand where things go awry. Edit: corrected "using this Galaxian XEX" to "mounting this Galaxian XEX".
  3. Textfiles.com maintains a database of historical North American BBSs. Here it is organized by area code. http://bbslist.textfiles.com/usbbs.html Also, what I assume to be a repository of just the list files themselves. http://www.textfiles.com/bbs/BBSLISTS/ http://www.textfiles.com/support/ Edit: Corrected from "US" to "North American"
  4. If I'm seeing things correctly, this would save 2 bytes as execution continues under the BNE only if TRAMSZ is zero. So save the zero in the X register and reuse it to store into BASICF. CHKBA LDA LDX TRAMSZ ; set to 1 if cartridge is present BNE BASREADY ... STA PORTB LDX #$00 STX BASICF ; Set flag to keep BASIC enabled in PORTB on reset
  5. After upgrading my Linux machines from Debian 11 Bullseye to Debian 12 Bookwork, I was disappointed to find that I was forced to disable the DirectX 9 and 11 options found under the Altirra menu item Tools --> Options --> Display in order to get any video output. Being limited to the non-DirectX video was a little soul-draining after having become accustomed to the heart-warming NTSC / PAL emulation produced using DirectX. But after an evening of testing settings and nuking my wineprefix before trying something else, I found that changing the rendering engine to Vulkan allowed the DirectX 11 video option to work again. Assuming you have the Debian winetricks package already installed, $ winetricks --gui "Select the default wineprefix" --> OK --> "Change settings" --> OK --> "renderer=vulkan" --> OK Then hit "Cancel" until winetricks closes. Performance-wise, on my machines, the Vulkan renderer is not as quick as the previous version (presumably OpenGL). This becomes more obvious in full screen mode. Anyway, this was my experience. Hope it helps others in the same boat (or at least my future self when I forget what I did to make it work). Edit: Corrected Altirra menu item path.
  6. https://www.atariarchives.org/mapping/appendix19.php
  7. Pressing the RESET console switch or issuing the WARM command will revert the color registers to their default values.
  8. I agree. Some commands could be offloaded to external executables.
  9. Hi. A COPY command is not implemented in NOS yet. When implementing a new command, the first thing I do is add an entry to the command table and a subroutine to change the COLOR2 register, just to be sure I have that part working. I've had several false starts with COPY but have left have the command table entry and stub routine enabled. I should've commented it out to avoid confusion. You'll see the same for LOCK and UNLOCK but with different colors. Regarding a video of a copy function, I suspect it was a demonstration of one of the N: device-enabled DOSes found under irata's DOS directory. There, you'll find an NCOPY.COM alongside the other N-device commands (NCD.COM, NPWD.COM, ...) all implemented as external executables. NOS is an attempt to implement these as internal commands. For NCOPY/COPY in NOS, we've thought about this being handled by the FujiNet itself and NOS sends an SIO command to FujiNet asking it to handle it. This would avoid clobbering memory on the Atari where maybe you are editing a BASIC program or something. The other option is to use a small buffer in the N-device space and the NCOPY/COPY command performs many, many short reads and writes to accomplish the transfer of bytes. In a traditional floppy-based DOS, this would require a million disk swaps, but with NOS that wouldn't be the case. Regarding the 138 returned by MKDIR/RMDIR. I've seen the error code, too. I'll have to debug to understand why. But for now it can be ignored.
  10. This reminds me that my intent is for the byte $0D to be ignored during batch file parsing so that $0D $0A is treated the same as $0A. I'll take a look at the code to understand why it isn't behaving correctly.
  11. You have the right idea - NOS.BAT should just contain NOS commands such as NCD. It can not parse BASIC commands. My first thought is it has something to do with the end-of-line (EOL) character in the file NOS.BAT. The last byte of the file NOS.BAT needs to be either a $0A (Unix EOL) or $9B (Atari EOL). Windows EOL ($0D $0A) doesn't work well as it results in a garbage character when being read by the Atari. I'm unsure what Apple uses. If there is no EOL character at all, NOS will just continuously beep searching for an end-of-line. For example, here I'm using hexdump from my modern computer to examine the bytes in the file $ hexdump -C NOS.BAT 00000000 4e 43 44 20 4e 3a 54 4e 46 53 3a 2f 2f 31 39 32 |NCD N:TNFS://192| 00000010 2e 31 36 38 2e 30 2e 31 39 35 2f 0a << Unix EOL |.168.0.195/.| $ hexdump -C NOS.BAT 00000000 4e 43 44 20 4e 3a 54 4e 46 53 3a 2f 2f 31 39 32 |NCD N:TNFS://192| 00000010 2e 31 36 38 2e 30 2e 31 39 35 2f 9b << ATARI EOL |.168.0.195/.| If you edit NOS.BAT from a text editor on the Atari, then you will be assured the end-of-line character is $9B. I'm attaching the T:EDIT editor for the Atari below. You can drop it in your TNFS-shared folder and run it on the Atari using the example below: ( Note: T:EDIT apparently uses the same address space as BASIC in ROM, so be sure BASIC is not resident (if 800XL/XE, etc boot while holding the OPTION key) or use the NOS command NOBASIC to release BASIC's address space back to RAM. ) N1: NCD N1:TNFS://192.168.0.195/ N1: LOAD TEDIT.COM Once in T:EDIT, Enter the NOS commands to be executed when NOS is loaded. @SCREEN NCD N1:TNFS://192.168.0.195/ (be sure to hit ENTER here - EOL char appears as left arrow) CTRL+S to Save, Save as N1:NOS.BAT (Note: If you ever encounter an application that complains about the Nn: device, substitute Dn:) CTRL+Q to Quit to DOS CTRL+L will load (if you need to make changes later) INSERT adds spaces The @SCREEN command will print the batch file statements as they are being parsed. This may help troubleshoot if all this turns out to be the wrong answer. TEDIT.COM
  12. I've attached an ATR file which has AtariWriter.xex transferred to an ATARI DOS 2.0s floppy and renamed to AUTORUN.SYS. Following assumes FujiNet hardware version 1.3 or greater. (1.0 may not support SIO daisy chain). 1. Copy the file AtariWrite.atr to the FujiNet SD card 2. Set the Device Select switches on the physical floppy drive to be device #2. such as https://archive.org/details/atari1050multilingualmanual/page/n6/mode/1up?view=theater 3. Boot into the FujiNet Config screen 4. Select the AtariWriter.atr image from the SD host into Drive Slot #1 5. Leave Drive Slot #2 unassigned 6. Boot using the OPTION key (remember to continue holding the OPTION key to disable BASIC if on a non-400/800) 7. At the ATARIWRITER menu, [L]oad a file from D2: (I could not find a way to index on D2:, so you'll need to note the AtariWriter document filenames beforehand). I've tested using the Altirra/FujiNet-PC environment. Hope this works for you. AtariWriter.atr
  13. My guess for the weird input configuration on the Atari is due to it being an Apple II port. On the Apple II, the original game controllers were a pair of analog paddles (to support Woz's Breakout). So, two paddles with one button each. Later the two potentiometers and two buttons from the paddles were merged into a single joystick with two buttons. On the Apple II, a player could comfortably hold a paddle in each hand and press the fire button on each - or - employ the two buttons on a single joystick. When the game was ported from the Apple II to the Atari, they must've decided to adhere to the Apple's two button input. I suppose if someone were to use paddles on the Atari version, then the input might seem less awkward.
  14. I should've included a bandwidth-friendly path to these scans. https://archive.org/details/AdAstraV2n3 https://archive.org/details/AdAstraV2n4
  15. While attending the recent "Atari 8-bit Computer Old School User Meeting" graciously hosted by the National Videogame Museum, in a box of mostly unremarkable floppy disks, I found two more issues of Ad Astra... These have been scanned and uploaded to the Internet Archive (links below). https://archive.org/download/AdAstraV2n3/adastra_v2n3.pdf https://archive.org/download/AdAstraV2n4/adastra_v2n4.pdf I typed in the BASIC and assembly programs found in Volume 2 Number 3. (Hopefully no typos) adastra_v2n3.atr The MORSEGEN program is interesting. It installs a timer driven interrupt routine that converts typed text into Morse code beeps. A portion of the stack is used as a keyboard buffer so you can type as fast as you wish and the Morse code beeps will play at a steady rate, eventually catching up to your input. The code header explains how to use the program. Several years ago, I had found Volume 2, Issues 1 & 2 in a local video game store. It turns out the same collector who sold those issues to the store also donated the box of disks to the meetup. So it was just good fortune that I happened to have been to both at just the right time.
×
×
  • Create New...