Changeset 141 for trunk/bootcode/regular/other.asm
- Timestamp:
- Apr 8, 2017, 12:27:37 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bootcode/regular/other.asm
r139 r141 99 99 ENDIF 100 100 ENDIF 101 102 ; Clear the BSS from its real start just upto the end of the variables.103 ; Here 'real start' means from where the BSS begins, which is below104 ; the point where the first variables are located. The part after105 ; the variables is not cleared because that is where the old SS:SP is106 ; stored, which is needed for AirBoot restarts during debugging.107 mov bx, offset sobss108 mov cx, offset EndOfVariables - offset sobss109 xor ax, ax110 call FillMemBlock111 101 112 102 ;
Note:
See TracChangeset
for help on using the changeset viewer.