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
View File

@ -8,11 +8,11 @@ echo " "
echo "Running Asaro..." echo "Running Asaro..."
if [ "$1" = "-d" ] if [ "$1" = "-d" ]
then 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 sleep 1
gdb -ex "target remote localhost:1234" gdb -ex "target remote localhost:1234"
else 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 fi
if [ $? -ne 0 ] if [ $? -ne 0 ]

View File

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

View File

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

View File

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

View File

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

View File

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