home *** CD-ROM | disk | FTP | other *** search
Amiga Catalog Translation file | 1994-06-12 | 2.2 KB | 56 lines |
- ## version
- ## language
- ## codeset 0
- ;AddMem V3.0
- ;The help text
- _help
- ;Usage: AddMem Startadress Endadress [CheckMem] [A1000Fast] [32Bit]\n\
- ; [!PUBLIC] [CHIP] [FAST] [!24BITDMA] [LOCAL] [PRIORITY]\n\
- ; - The start and end addresses of the memory block must be aligned to eight\n\
- ; - The optional argument CheckMem enables checking of the added memory.\n\
- ; - A1000Fast sets the flags to PUBLIC|FAST|LOCAL|24BITDMA. The priority\n\
- ; will be set to 0. The memory must be located in the range from $200000\n\
- ; and $A00000.\n\
- ; - 32Bit sets the flags to PUBLIC|FAST and the priority to +5. If the\n\
- ; end address is below $1000000, the Flag 24BitDMA will be set, too.\n\
- ; - !PUBLIC overrides the default; the memory will be not PUBLIC.\n\
- ; - CHIP overrides the calculated type; the memory type will be CHIP.\n\
- ; - FAST sets the memory type to FAST, overriding the precalculated type.\n\
- ; - !24BITDMA overrides the calculated location; the memory will marked as\n\
- ; not beeing able to use ZorroII-DMA, even if its end address lies below\n\
- ; $100000.\n\
- ; - LOCAL should be set if and only if the the memory device is not\n\
- ; mounted on an AutoConfigurating card.\n\
- ; - PRIORITY is 0 by default. It determines which memory block will be\n\
- ; used first. For normal FastMem it should be 0, for 32 bit memory +5.\n
- ;Error: Start address should not be zero
- SNNTxt
- ;Bad start address value.\n
- ;Error: Start address should be aligned to 8 bytes
- SBATxt
- ;Start address must be aligned to 8.\n
- ;Error: End address should not be zero
- ENNTxt
- ;Bad end address value.\n
- ;Error: End address should be aligned to 8 bytes
- EBATxt
- ;End address must be aligned to 8.\n
- ;Error: End address should be higher than start address
- SBETxt
- ;Start address must be lower than end address.\n
- ;Error: Memory test failed
- MTTxt
- ;WARNING: The requested memory has an error.\n
- ;Error: Bad memory range for A1000Fast
- AFTxt
- ;Memory range not suitable for A1000Fast.\n
- ;Error: Bad priority value
- BPTxt
- ;Priority must be between -128 and 127.\n
- ;Error: Memory would collide with chips
- BRTxt
- ;The requested memory range is (partially) located in reserved areas.\n
- ;Error: Memory partially not mounted
- BMTxt
- ;WARNING: The requested memory seems to be not valid.\n
-