
LisaList2
- September 05, 2025, 03:58:14 pm
- Welcome, Guest
News:
2022.06.03 added links to LisaList1 and LisaFAQ to the General Category
41
on: August 23, 2025, 08:04:28 pm
|
||
Started by AlexTheCat123 - Last post by compu_85 | ||
Wow amazing work Alex!!!
|
42
on: August 22, 2025, 09:50:09 pm
|
||
Started by blusnowkitty - Last post by ried | ||
It works! Well, it does whatever a DMA Test Card does... Behavior is consistent with other cards in this thread:
https://youtu.be/qFD37dJXe0E Special thanks to stepleton for making his card's ROM available, and to Lisa2 for burning me a copy. You guys rock. ![]() |
43
on: August 21, 2025, 11:55:27 am
|
||
Started by sigma7 - Last post by AlexTheCat123 | ||
Glad to hear it! Be sure to make a backup of your disk now before going any further, and let us know if you have any issues with actually building everything.
|
44
General Category / Building LOS From Source / Re: Error 10730 after fresh attempt at ALEX/MAKE/ALL_NODISKS
on: August 21, 2025, 11:53:58 am
|
||
Started by sigma7 - Last post by AlexTheCat123 | ||
Wow, sorry that you're still having problems!
Quote Is there an issue with my machine configuration? It is a 2MB Lisa 2, one ProFile emulator attached to the built-in port. I think Alex uses a 2/10. I don't think he has mentioned working with two ProFiles, but maybe I missed it. If you have been successful, what is your machine configuration? Everything about your config sounds good to me. I used a 2/10 in real life, but a 2/5 in LisaEm. And everything builds fine under both, but I guess you could try a 2/10 just to be safe. Quote Is it the case that one needs to be doing the make process on a volume that isn't the one in use (ie. other than the boot/system volume)? The build scripts assume that everything is on the boot volume, so it won't work if you have your code on a separate disk, even if you set the prefix to that disk. Quote Is there a need to exit the Workshop and enter the LOS environment at some stage to prepare the disk for the new SYSTEM.OS? Nope, no need to do that! Quote Any recommendations for how to troubleshoot what is wrong with SYSTEM.OS? The failure happens really early in the boot process, before the OS has loaded, so you won't be able to use WRITELN or anything like that. Doing RAM dumps from a debug build of LisaEm was really helpful for me when I was troubleshooting issues at this phase of boot; you can see which segments of the OS have been loaded into memory and where exactly it fails, which might give you some helpful info. And if you really need to "print" any debug messages, then you could do what I did and write a procedure that just throws debugging strings into RAM at some random address. I might be able to find the code I used if you really need it. Unfortunately, I can't replicate the problem on my end, so I'm not sure that I can be of any more help here without some more info about where exactly the OS load is failing. SOURCE/LOADER.TEXT is the file that's generating the 10730 errors (look for the trap(bad_os) calls). This is where you'd want to put your custom "writeln" procedure. Note that this isn't part of the OS; it instead gets linked to form each of the System.BT bootloader files, which means that you'll have to rewrite the boot blocks on your boot volume with the new System.BT_Profile each time you modify and recompile this file (which you do by running ALEX/MAKE/BTDRIVERS.TEXT). There's an fs_utilities call that does this, with the caveat that the target volume can't be mounted when you try to rewrite the blocks. The other alternative is to copy the new System.BT_Profile (and new System.CD_Profile to make sure it's patched for large disk support) to a Workshop install disk #1 and reinstall the Workshop from this disk, which automatically rewrites the boot blocks at the end. Quite a pain to do this each time you modify the loader, but at least the 512MHz clock in LisaEm makes it a bit more pleasent! In SOURCE/LOADER.TEXT, the four things that cause a 10730 are: 1. A SYSTEM.OS that doesn't have an executable code block in the right place after the header blocks. 2. A SYSTEM.OS that has more than 48 segments in it. 3. A segment in SYSTEM.OS that has a size of 0. 4. Failure to load any SYSTEM.OS segment into RAM. I'd say that #4 is the most likely culprit (and the hardest to troubleshoot), but it's worth checking them all. Quote I observe that during the processing on the #2#1 external device, the linker refers to the internal device to read INTRINSIC.LIB... could that be referring to a pre-new-make version when it shouldn't be? This is one of the reasons why you've got to have everything on the boot device; we need to be reading in and updating the same INTRINSIC.LIB during each link. |
45
on: August 20, 2025, 05:24:32 pm
|
||
Started by sigma7 - Last post by snua12 | ||
I finally managed to transfer all the files successfully!
The issue turned out to be hardware-related: due to past battery leakage, the G (enable) pin of the AM26LS32ACN was not grounded correctly. After fixing that, I also built a short cable according to the pinout http://sigmasevensystems.com/blumanual.html Code: [Select] Lisa (DB25M) PC (DE9F) Finally, I had to tweak the Python transfer script to use CTS/RTS flow control instead of DSR/DTR. Code: [Select] diff --git a/scripts/lisa_serial_transfer.py b/scripts/lisa_serial_transfer.py With these changes in place, the transfers seem to be now reliable. Thanks again to everyone here for the advice and pointers — it definitely set me on the right track. |
46
General Category / Building LOS From Source / Re: Error 10730 after fresh attempt at ALEX/MAKE/ALL_NODISKS
on: August 20, 2025, 04:55:18 pm
|
||
Started by sigma7 - Last post by sigma7 | ||
To test the question of whether replacing the running SYSTEM.OS is an inherent problem, I tried duplicating it, then copying the duplicate over the running one. Restart works, test passed.
Then I tried: renaming the original, then renaming the copy to SYSTEM.OS. Restart works, test passed. Not much of a test when the files are identical, but something. I added a dual parallel port card, and set up another emulator on the lower port, initialized to the image as of the post ALEX/MAKE/LIBS_PARTIAL step of MAKE/ALL_NODISKS. Set the prefix to -#2#1, and ran ALEX/MAKE/FULLOS. During the processing, I could see most reads & writes were occurring on the #2#1 expansion slot device, with occasional accesses to the built-in port that seemed to correspond to launching the Pascal compiler, assembler, or linker. After completion, I moved the external device to the internal port, and tried to boot from it... error 10730. I observe that during the processing on the #2#1 external device, the linker refers to the internal device to read INTRINSIC.LIB... could that be referring to a pre-new-make version when it shouldn't be? eg. Code: [Select] {V3.0} WORKSHOP: FILE-MGR, SYSTEM-MGR, Edit, Run, Debug, Pascal, Basic, Quit, ?L I'll try to make on a 2/10 next, after that I guess I'll be begging Alex for help... |
47
General Category / Building LOS From Source / Error 10730 after fresh attempt at ALEX/MAKE/ALL_NODISKS
on: August 19, 2025, 11:58:10 pm
|
||
Started by sigma7 - Last post by sigma7 | ||
I started fresh with the Aug 14 2025 Alex github files, and:
I restored the image (saved after transferring the files), and worked through portions of the make process, periodically saving a copy of the image so I could go back a step, and testing that restarting still worked. (The Step option of exec processing is useful for narrowing down this kind of thing) Ultimately I found that restarting stopped working after executing ALEX/LINK/SYSTEMOS, and specifically the last step where OBJECT/SYSTEM.OS is copied over SYSTEM.OS I used DUMPOBJ to examine and compare the original SYSTEM.OS and the new OBJECT/SYSTEM.OS. Both have the same segmentation, number of entry points in the jump table, same segment names at the same segment addresses. The code size of every routine of the new make is a bit larger, I think due to including some debugger names. I wondered if changing SYSTEM.OS while it is in use may be the issue, so I also tried hitting reset after copying over SYSTEM.OS (rather than formally exiting the shell and restarting) ... still error 10730. I tried doing the complete build, skipping over the replacement of SYSTEM.OS, and doing that one step last ... still error 10730. So wondering...
|
48
General Category / Lisa Troubleshooting and Repair / Re: Will the Lisa return an IO error without the "Lite" Interface Card
on: August 18, 2025, 01:52:46 pm
|
||
Started by friedboard - Last post by sigma7 | ||
It is certainly possible that I'm wrong that it shouldn't work (or maybe there are more specifics as to where it does and doesn't)... I've now done some superficial testing and found that I was mostly incorrect. In summary, the 2/10 I/O Board in an otherwise stock 2/5 does appears to work with Sony 800K drives, but doesn't work with a 400K drive. With a Sony double sided drive, after swapping in the 2/10 I/O Board, the drive did seem to run normally and the floppy was readable (since this was a very superficial test, there could be more subtle issues such as slow performance, or not). I tested an MPF75W and MPF51W. With a 400K single sided drive, after swapping in the 2/10 I/O Board, the drive did clearly misbehave; the motor would run, but not at the usual speed, or with the usual variations, and the disk was not readable. Upon swapping the Lite Adapter for the modified version described in the LisaFAQ http://lisafaq.sunder.net/lisafaq-hw-io_substitution.html, the 400K drive worked again. I expect any Floppy Emulator won't need the motor speed signal, so would work like the Sony drives. I didn't test any off-brand drives, such as the Chinon drive sold by Sun Remarketing for a while. Apologies for the misdirection; I'll correct my previous post on this topic. |
49
on: August 17, 2025, 04:53:43 pm
|
||
Started by bmwcyclist - Last post by Lisa2 | ||
Rick, bmwcyclist, please PM me and I will help you. Rick |
50
General Category / Lisa Troubleshooting and Repair / Re: Will the Lisa return an IO error without the "Lite" Interface Card
on: August 16, 2025, 01:18:49 pm
|
||
Started by friedboard - Last post by sigma7 | ||
But this might not be a 2/10 IO board, but a 2/5 board. Just not the common version that we see Although it isn't impossible that new boards will be found, I don't think this is one... here is the schematic for the 2/10 I/O Board for verification: http://bitsavers.org/pdf/apple/lisa/hardware/Lisa_2_10_IO_Board/ |