This includes both separate .md files, and documentation that was on the head of the .S source files. Retest everything as this was done, and fix a few easy things.
20 lines
254 B
ArmAsm
20 lines
254 B
ArmAsm
#include "common.h"
|
|
|
|
BEGIN
|
|
|
|
mov $0x5301, %ax
|
|
xor %bx, %bx
|
|
int $0x15
|
|
|
|
/* Try to set apm version (to 1.2). */
|
|
mov $0x530e, %ax
|
|
xor %bx, %bx
|
|
mov $0x0102, %cx
|
|
int $0x15
|
|
|
|
/* Turn off the system. */
|
|
mov $0x5307, %ax
|
|
mov $0x0001, %bx
|
|
mov $0x0003, %cx
|
|
int $0x15
|