Stage 1: AMOS Pro V2.0 as released and fully documented
Stage 2: AMOS Pro V2.1 with bugs fixed and updated docs
Stage 3: AMOS Pro V2.2 with approved extensions and updated docs
Stage 4: AMOS Pro V3.0 for AGA and fully documented
My biggest worry is the mayhem that may ensue from multiple developers working on AMOS. It's not exactly well partitioned. The library format and 'relocatable building bricks' do give some natural partitioning, but there is close coupling between a lot of the 'bits'.
dc.b "Original code here..."
*****\
dc.b "New code here..."
*****/
; dc.b "Commented out code"
It is going to be difficult to fix/add everything that has been mentioned in "the plan" without multiple people working on it. I think everyone should have their own source files, comment out (with ; or a *) uneeded code and stick all new code within "asterisk fields", e.g.:Code: [Select]dc.b "Original code here..."
*****\
dc.b "New code here..."
*****/
; dc.b "Commented out code"
I used string fields just to make it all clear ;)
I only recently started using what I have dubbed as "asterisk fields" whilst debugging my current AMOS project (Tile Master). It makes seeing original code and new code easier to spot.
Once something has been fixed/added, it can then be added to the master code (a separate set of files only available to one person?). That would avoid possible confusion with multiple people working with the same files.
fld_source | Arbitrary primary key |
fld_file_name | Source File Name |
fld_line number | Line Number |
fld_line_text | The original source text with tabs expanded to spaces |
fld_is_full_line_comment | Is this line a full-line comment? |
fld_is_eol_comment | Does this line have an end-of-line comment? |
fld_label | ASM Label field |
fld_instruction | ASM Instruction field |
fld_operands | ASM Operands field |
fld_comment | ASM Comment (eol or full-line) |
fld_comment translated | Empty - any translators out there? |
Has anyone else looked at the other sources yet for completeness?
I mentioned here:
http://www.ultimateamiga.co.uk/index.php/topic,9520.msg44972.html#msg44972 (http://www.ultimateamiga.co.uk/index.php/topic,9520.msg44972.html#msg44972)
that at least +w.s is corrupt. Looks like a fix is half-way programmed in it (?).
Include "layers_lib.i"
Include "graphics_lib.i"
I mentioned here:
http://www.ultimateamiga.co.uk/index.php/topic,9520.msg44972.html#msg44972 (http://www.ultimateamiga.co.uk/index.php/topic,9520.msg44972.html#msg44972)
that at least +w.s is corrupt. Looks like a fix is half-way programmed in it (?).
It doesn't look corrupt to me. I tried assembling it and found these filesCode: [Select]Include "layers_lib.i"
Include "graphics_lib.i"
weren't with the other files, but I did find them in the includes files that came with DevPac 3.18 :)
However, some of the variables used to define some other variables in the WB OS includes files are missing, and those are what appears to be generating the errors when assembling.
The problem with the way the code is written is that sometimes code references/jumps to code found in other files and can make it very hard to follow.
Can I suggest that you add the Includes files into your references (e.g File "A" requires files "B","C" etc.) and perhaps build a tree so it's easy to see which files are required to attempt to reassemble the sourcecode?
Other bits of interest:
•I've databased the sources in Access 2010. That process at least proved to me that all the sources are syntactically correct. (The +w.s problem results from missing labels, not syntax errors.)
I'm off to try assembling +w.s to see if I'm fooling myself or not. But I thought I'd better put you in the picture first
Quote from: bruceuncleI'm off to try assembling +w.s to see if I'm fooling myself or not. But I thought I'd better put you in the picture first
I just tried that after kicking the includes into shape. The layers_lib.i and graphics_lib.i are a bit of a mystery as I can't find them anywhere. However, leaving them out completely allows some checking by GenAm.
More of a mystery to a novice like me is all the errors then thrown up for bit manipulation instructions on address destinations. The 68000 only allows bits 0 - 7 unless the destination is a register. But this source has quite a few that break that. E.g. at line 275:
ColRW: bsr BlitWait
btst #13,DmaConR(a6)
rts
That's one that's hard-coded in the source which makes the example obvious. Most of the others are bit-number symbols in +equ.s (BitBobs, etc). I also had to turn on case insensitive as some symbols don't follow case sensitivity rules, which is a bit of a worry.
As I said, I'm to be considered a novice in 68000 assembler and using DevPac. So, am I missing something? Help!!
I looked at the GenAm file supplied with the sources and it's V3.2. Mine's V3.18.
"All projects fail because of assumptions!"
I should nail that to my forehead perhaps ;D . The wild goose chase I've been on about missing symbols is because I assumed that the AMOS team were using case-sensitive symbols and labels. Not so. Which is a bit of a worry.
I looked at the GenAm file supplied with the sources and it's V3.2. Mine's V3.18. Time to make a new instance of DevPac to test out my suspicions. Sure enough, after the usual messing about getting the includes recognised in a new location, it compiled fine. Incidentally, those graphics_lib.i and layers_lib.i files were missing from my V3.18 includes. So I substituted a genuine WB 2.0 set and there they were.
The resulting load file doesn't match the AMOS Pro amiga.library 'out-of-the-box' file. But a quick differencing showed these all seem to be relative address offset differences. I haven't checked yet (here I go again) so I'm assuming that's just because I haven't set an optimal offsets option somewhere in DevPac.
Conclusion (and this is critical guys!)
You need the version of GenAm that comes with the sources to assemble any of this stuff as that version has been hacked to assemble those bit instructions with 'illegal' bit-numbers.
And does anyone have any idea what the files GenAm2 and GenIm2 do?
I'm not sure that GenAm has been hacked.
So, in the example I've been using so far, that bit-number of 13 ($D) modulo 8 results in 5. The bit-numbers are counted from zero so specifying bit-number 13 for a btst operation would actually refer to bit number 5 and give the result $20 (%0010 0000). As it follows a blitter operation, the bit to be tested probably was bit-number 13 (DMAB_BLTNZERO in hardware/dmabits.i) and not bit-number 5 (DMAB_SPRITE in hardware/dmabits.i) which is what it actually does.
And does anyone have any idea what the files GenAm2 and GenIm2 do?
GenAm2 and GenIm2 are part of the files from DevPac 2. I will try to look up what they do as my memory is hazzy right now (down to the fact I'm damn sleepy!) and I haven't used DevPac2 for a few years now.
GenAm2 is a newer version of GenAm. I suspect GenAm came with a version of DevPac 1. GenAm2 is an executable and is an ASM editor and assembler in one. GenIm2 is also an executable and is some sort of command line tool - possibly used to link files together? I have never used GenIm2 before... I didn't use MonAm2 (or MonAm) either - debugging software part of DevPac 2 (or DevPac 1).
I'd seen GenIm mentioned in the Equates section of AMOS Pro. I'ts mentioned in a comment in AMOS_Pro\Productivity1\Equates\Make_Equates.AMOS:
"' Name of the .LST file, produced by GenIm "
and in ...\Equates.Doc:
"* You should use Genam2 (or 3), in fact the assembler, Genim2."
if that's a clue.
I know very little about Devpac as I'd only bought it just before my Amiga 2000 was retired years ago. The only stuff I did with it was one simple procedure to embed in an AMOS 1.3 program (which is what prompted the purchase). I was scared stiff (at the time) of working in assembler on the Amiga. ::) I'm using a dowloaded disc set and dowloaded docs at the moment. Which isn't all that informative! But I'm getting the hang of it now. ;)
Have you noticed the programs drip and flush in some of the scripts? I lurve the names but would also like to know what they did if anyone's come across them? They sound a bit too much like a couple of in-house programs from the names so we may never know...
flush
drip
amos pro
flush
drip
I know very little about Devpac as I'd only bought it just before my Amiga 2000 was retired years ago. The only stuff I did with it was one simple procedure to embed in an AMOS 1.3 program (which is what prompted the purchase). I was scared stiff (at the time) of working in assembler on the Amiga. ::) I'm using a dowloaded disc set and dowloaded docs at the moment. Which isn't all that informative! But I'm getting the hang of it now. ;)
It's not that hard coding asm. I find it harder trying to use the OS via ASM, which is why my assembly written software will always close down the OS. Not to mention it's great fun having full control of the machine ;)
Drip on the other hand is a mystery :(
Flush probably just ensures the system is cleared of anything that may have been running previously. Thus ensuring that no false bugs are found when testing AMOS Pro - some programs can crash when run because a previous program contained dodgy code.
Drip on the other hand is a mystery
BUT, before we get that far, we've got to arrive at a set of sources that will actually assemble into AMOS Pro V2.0.
IncDir "dh0:devpac/work/amospro sources/includes/"
Include "exec/types.i"
Include "graphics/rastport.i"
Include "graphics/clip.i"
Include "graphics/layers.i"
Include "graphics/text.i"
Include "devices/input.i"
Include "devices/inputevent.i"
Include "exec/interrupts.i"
Include "exec/io.i"
Include "hardware/intbits.i"
Include "graphics/layers.i"
Include "graphics/gfx.i"
_LVOInitBitmap EQU -$186
_LVONewLayerInfo EQU -$90
_LVOCreateUpfrontLayer EQU -$24
_LVOSetAPen EQU -$156
_LVOSetBPen EQU -$15C
_LVOSetDrMd EQU -$162
_LVOSetFont EQU -$42
_LVOInstallClipRegion EQU -$AE
_LVODisposeRegion EQU -$216
_LVODeleteLayer EQU -$5A
_LVODisposeLayerInfo EQU -$96
_LVONewRegion EQU -$204
_LVOOrRectRegion EQU -$1FE
_LVOOpenFont EQU -$48
_LVOCloseFont EQU -$4E
_LVOOwnBlitter EQU -$1C8
_LVODisownBlitter EQU -$1CE
_LVOWaitBlit EQU -$E4
_LVOText EQU -$3C
_LVOWaitTOF EQU -$10E
;IFNE Debug=2 Si debug
;bclr #WFlag_LoadView,T_WFlags(a5) AMIGA-A normal...
;ENDC
Bit strange that the Amos pro exe should be 3 times bigger though? I assume its been checked that the original doesn't have some kind of compression on it?
The only changes I had to make were to fix the illegal bit instructions by subtracting 8 from the operand. For example, btst #x,DmaConR(a6) would be changed to btst #x-8,DmaConR(a6). It seems that the illegal instructions aren't flagged in some versions of Devpac (or is there an error override option somewhere?), which would explain how this rather sloppy code managed to slip through the net.
My output files are not byte-exact copies of the originals but they seem to work fine as 1:1 replacements in my WinUAE AmosPro 2.0 installation. AmosPro.lib is 101500 bytes vs 98184 bytes original. AmosPro is 71652 bytes vs 22624 bytes original.
DBL Editor | large AMOS program |
DBL Editor.guide | extensive guide to the above |
DBL Editor Menu Maker | AMOS program for an SDK for DBL Editor |
DBL Editor Data Maker | AMOS program for an SDK for DBL Editor |
DBL Editor Tutorials and files | these go with the AmigaGuide docs |
DBL Editor asm source | used as an embedded proc in DBL Editor |
*Comment Stripper Accessory | AMOS Accessory to strip comments |
**AMOS Program Detokeniser | lists the AMOS tokens and parameters alongside the original source for an AMOS program |
Resource Bank Message Lister | AMOS program |
AMOS Editor Message Lister | AMOS program |
Assorted commented DBL sources | includes the Default Resource Bank progs |
Directory | File | Source |
AMOS Pro | AMOSPro | +b.s, +verif.s, +Internal_Jumps.s |
AMOS Pro | Compiler_Shell | Compiler_Shell.AMOS (compiled) |
AMOS Pro\APSystem | AMOSPro.Lib | +lib.s, +Toktab_Verif.Bin, +Dialog_Funcs.Bin |
AMOS Pro\APSystem | AMOSPro_Compact.Lib | +compact.s |
AMOS Pro\APSystem | AMOSPro_Compiler.Lib | +compext.s |
AMOS Pro\APSystem | AMOSPro_Editor | +edit.s |
AMOS Pro\APSystem | AMOSPro_IOPorts.Lib | +io_ports.s |
AMOS Pro\APSystem | AMOSPro_Monitor | +monitor.s |
AMOS Pro\APSystem | AMOSPro_Music.Lib | +music.s |
AMOS Pro\APSystem | AMOSPro_Request.Lib | +request.s |
AMOS Pro\APSystem | APCmp | +apcomp.s ? (not verified) |
AMOS Pro\APSystem | Compiler.Lib | +clib.s |
AMOS Pro\APSystem | Header_Backstart.Lib | +header_backstart.s |
AMOS Pro\APSystem | Header_CLI.Lib | +header.s |
Libs: | amos.library | +w.s, +WFont.Bin, ReqPic.Bin, +AMOSPro_Mouse.Abk |
I have successfully recreated AmosPro.lib and the AmosPro executable by assembling +lib.s and +b.s respectively in Devpac 3. (w.s appears to be an old, pre-2.0 version of the lib and can be ignored.) The only changes I had to make were to fix the illegal bit instructions by subtracting 8 from the operand. For example, btst #x,DmaConR(a6) would be changed to btst #x-8,DmaConR(a6). It seems that the illegal instructions aren't flagged in some versions of Devpac (or is there an error override option somewhere?), which would explain how this rather sloppy code managed to slip through the net. As when creating an extension, the amospro.lib code needs to be assembled as an executable without any debug symbols.
My output files are not byte-exact copies of the originals but they seem to work fine as 1:1 replacements in my WinUAE AmosPro 2.0 installation. AmosPro.lib is 101500 bytes vs 98184 bytes original. AmosPro is 71652 bytes vs 22624 bytes original.
It's intriguing to read some of the documentation. Seems that they were serious about doing the AGA version in early 93. There's even a demo AMOS program to show an "AGA detected" message. There's also talk of a "PCOS" windows port. I wonder why Europress pulled the plug.
To that end I've set up a .git repository with the AMOSPro sources over at bitbucket.org. This is where I plan to store my personal modifications to the source code, but if any of the other developers would like commit access, just let me know and I'll grant it to you (although the limit for the free account is 5 active developers). But since the repository is public, everyone should have read access. I've also set up a wiki and bug tracking services if those could prove useful.
https://bitbucket.org/mness1978/amospro
1. The include lines at the start need to be modified to point to the "include" directory. exec/types.i needs to be added so that the STRUCTURE type is defined. Non-standard names were used for gfx.i and layers.i. These are also fixed:
2. The source doesn't contain the LVO offsets for certain graphics and layers library calls. I just looked them up in "Mapping the Amiga" and appended these lines to +libsoffsets.s:They're not non-standard names. Just copy layers_lib.i and graphics_lib.i from the Devpac includes into the AMOS includes in the sources distribution. That solves both problems. Why they haven't got them in the includes layers and graphics directories is a mystery.
And it does cause a problem at least in one point in the code when it's used against the hardware registers - see +w.s at line 277. Exactly which bit in DMACONR did they intend to issue a read to? BZERO or SPREN?
For similar bit operations on label offsets from a5, it's self-correcting. Which is probably why they didn't notice it. But the hardware registers are different as I understand that they should always be referenced using word-sized data. Can anyone confirm that as I'm still a novice as far as Amiga hardware's concerned?
I just noticed that the +b.s loader file contains some conditional debugging includes. If you open the debug.s file and change the DEBUG flag to 0, +b.s will assemble to a slimmed down 22624 byte executable - exactly the same size as the original. Furthermore, if DEBUG=0 there is no need to edit out line 9342 of +w.s.
So let's recap. To create working amospro, amos.library and amospro.lib binaries while making minimal changes to the original code archive we need to do the following:I found I didn't need these as they're already defined in layers_lib.i and graphics_lib.i - with those includes they shouldn't be needed.
~~~~~~~
5. Copy & paste my above list of _LVO equates to +libsoffsets.s
~~~~~~~
Quote from: SidewinderTo that end I've set up a .git repository with the AMOSPro sources over at bitbucket.org. This is where I plan to store my personal modifications to the source code, but if any of the other developers would like commit access, just let me know and I'll grant it to you (although the limit for the free account is 5 active developers). But since the repository is public, everyone should have read access. I've also set up a wiki and bug tracking services if those could prove useful.This is going to be an ongoing problem as more people start making bug-fixes and enhancements. We'll end up with umpteen versions of AMOS Pro!
https://bitbucket.org/mness1978/amospro
We are also missing the source for Editor_DBL.bin, which is inserted (via Insert_DBL.AMOS) into AMOSPro_Editor_Resource.Abk. I couldn't get your DBL editor to read it from a memory bank but the plain text is visible in the binary so I think we can reconstruct it.
Start: | word | 2 | Number of DBL progs |
long | Prog1-Start | Offset to prog 1 | |
long | Prog2-Start | Offset to prog 2 | |
Prog1: | word | length of prog 1 | |
string | prog 1 text (null-terminated) | ||
Prog2: | word | length of prog 2 | |
string | prog 2 text (null-terminated) |