|
Last change
on this file since 30 was 30, checked in by Ben Rietbroek, 15 years ago |
|
AiR-BOOT v1.07 -- As released with eCS v2.1. [2011-05-06]
Signature-date: 2006-03-13. (incorrect)
Trunk contains buildable v1.07 version as distributed with eCS v2.1.
Directory 'tags' contains v1.06 & v1.07 reference versions
built for all languages. Note that language ID for 'Dutch' changed
from 'DT' to 'NL' in v1.07 and that the v1.06 reference version also
uses 'NL' for 'Dutch'.
Also note that helper programs like the installer and setaboot are
are only modified for the OS/2 versions in v1.07.
The signature-date for v1.07 incorrectly states the same
date as for v1.06. The signature-version is correct.
Removed other binaries. (cd-rom images, old releases, etc.)
The tags serve as reference versions:
- v1.06: rebuilt from source. (tags/v1.06r)
- v1.07: built as released with eCS v2.1. (tags/v1.07r)
|
|
File size:
1.9 KB
|
| Rev | Line | |
|---|
| [29] | 1 | ; AiR-BOOT (c) Copyright 1998-2008 M. Kiewitz
|
|---|
| 2 | ;
|
|---|
| 3 | ; This file is part of AiR-BOOT
|
|---|
| 4 | ;
|
|---|
| 5 | ; AiR-BOOT is free software: you can redistribute it and/or modify it under
|
|---|
| 6 | ; the terms of the GNU General Public License as published by the Free
|
|---|
| 7 | ; Software Foundation, either version 3 of the License, or (at your option)
|
|---|
| 8 | ; any later version.
|
|---|
| 9 | ;
|
|---|
| 10 | ; AiR-BOOT is distributed in the hope that it will be useful, but WITHOUT ANY
|
|---|
| 11 | ; WARRANTY: without even the implied warranty of MERCHANTABILITY or FITNESS
|
|---|
| 12 | ; FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|---|
| 13 | ; details.
|
|---|
| 14 | ;
|
|---|
| 15 | ; You should have received a copy of the GNU General Public License along with
|
|---|
| 16 | ; AiR-BOOT. If not, see <http://www.gnu.org/licenses/>.
|
|---|
| 17 | ;
|
|---|
| 18 | ; Some Standard macros to make life easier with ALP and other assemblers :D
|
|---|
| 19 |
|
|---|
| 20 | MPush Macro reglist
|
|---|
| 21 | irp reg,<reglist>
|
|---|
| 22 | push reg
|
|---|
| 23 | EndM
|
|---|
| 24 | EndM
|
|---|
| 25 |
|
|---|
| 26 | MPop Macro reglist
|
|---|
| 27 | irp reg,<reglist>
|
|---|
| 28 | pop reg
|
|---|
| 29 | EndM
|
|---|
| 30 | EndM
|
|---|
| 31 |
|
|---|
| 32 | callfar Macro destination
|
|---|
| 33 | push cs
|
|---|
| 34 | call &destination
|
|---|
| 35 | EndM
|
|---|
| 36 |
|
|---|
| 37 | ; Shortcuts for pointer-types
|
|---|
| [30] | 38 | bptr equ byte ptr
|
|---|
| 39 | wptr equ word ptr
|
|---|
| 40 | dptr equ dword ptr
|
|---|
| 41 | qptr equ qword ptr
|
|---|
| 42 | tptr equ tbyte ptr
|
|---|
| 43 |
|
|---|
| 44 |
|
|---|
| 45 | sector_size equ 512
|
|---|
| 46 | image_size_60secs equ 7800h
|
|---|
| 47 | image_size_62secs equ 7c00h
|
|---|
| 48 |
|
|---|
| 49 | ;image_size equ image_size_60secs
|
|---|
| 50 | image_size equ image_size_62secs
|
|---|
| 51 |
|
|---|
| 52 | sector_count equ image_size / sector_size ; Image size in sectors
|
|---|
| 53 |
|
|---|
| 54 | IF image_size EQ image_size_60secs
|
|---|
| 55 | partition_count equ 30 ; Maximum number of partitions supported
|
|---|
| 56 | ELSE
|
|---|
| 57 | partition_count equ 45 ; Maximum number of partitions supported
|
|---|
| 58 | ENDIF
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.