git-svn-id: https://spexeah.com:8443/svn/Asuro@672 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c

This commit is contained in:
kieron 2018-05-07 22:03:40 +00:00
parent 913a8c0d67
commit 2cbea55087
20 changed files with 8 additions and 4 deletions

BIN
Asuro.iso

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

4
run.sh

@ -8,11 +8,11 @@ echo " "
echo "Running Asaro..."
if [ "$1" = "-d" ]
then
qemu-system-i386 -serial pty -s -S -cdrom Asuro.iso&
qemu-system-i386 -hda IMAGE.img -serial pty -s -S -cdrom Asuro.iso&
sleep 1
gdb -ex "target remote localhost:1234"
else
qemu-system-i386 -serial pty -monitor stdio -cdrom Asuro.iso
qemu-system-i386 -hda IMAGE.img -serial pty -monitor stdio -cdrom Asuro.iso
fi
if [ $? -ne 0 ]

@ -23,6 +23,7 @@ var
i : uint32;
begin
tracer.push_trace('EHCI.load');
devices:= PCI.getDeviceInfo($0C, $03, $20, count);
console.output('USB-EHCI Driver', 'Found ');
console.writeint(count);

@ -50,6 +50,7 @@ var
MMR : POHCI_MMR;
begin
tracer.push_trace('OHCI.load');
devices:= PCI.getDeviceInfo($0C, $03, $10, count);
console.output('USB-OHCI Driver', 'Found ');
console.writeint(count);

@ -23,6 +23,7 @@ var
i : uint32;
begin
tracer.push_trace('UHCI.load');
devices:= PCI.getDeviceInfo($0C, $03, $00, count);
console.output('USB-UHCI Driver','Found ');
console.writeint(count);

@ -23,6 +23,7 @@ var
i : uint32;
begin
tracer.push_trace('XHCI.load');
devices:= PCI.getDeviceInfo($0C, $03, $30, count);
console.output('USB-XHCI Driver', 'Found ');
console.writeint(count);

@ -9,14 +9,14 @@ const
VERSION_SUB = '1';
REVISION = '670';
RELEASE = 'ia';
LINE_COUNT = 27477;
LINE_COUNT = 27481;
FILE_COUNT = 88;
DRIVER_COUNT = 32;
FPC_VERSION = '2.6.4';
NASM_VERSION = '2.10.09';
MAKE_VERSION = '3.81';
COMPILE_DATE = '07/05/18';
COMPILE_TIME = '22:53:20';
COMPILE_TIME = '22:56:53';
implementation