git-svn-id: https://spexeah.com:8443/svn/Asuro@668 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
parent
fee4e4d759
commit
b9d6225cb8
BIN
bin/kernel.bin
BIN
bin/kernel.bin
Binary file not shown.
Binary file not shown.
BIN
lib/ACE.ppu
BIN
lib/ACE.ppu
Binary file not shown.
BIN
lib/BPE.ppu
BIN
lib/BPE.ppu
Binary file not shown.
BIN
lib/BTSSE.ppu
BIN
lib/BTSSE.ppu
Binary file not shown.
BIN
lib/CFE.ppu
BIN
lib/CFE.ppu
Binary file not shown.
BIN
lib/CSOE.ppu
BIN
lib/CSOE.ppu
Binary file not shown.
BIN
lib/DBGE.ppu
BIN
lib/DBGE.ppu
Binary file not shown.
BIN
lib/DBZ.ppu
BIN
lib/DBZ.ppu
Binary file not shown.
BIN
lib/DFE.ppu
BIN
lib/DFE.ppu
Binary file not shown.
BIN
lib/E1000.ppu
BIN
lib/E1000.ppu
Binary file not shown.
BIN
lib/GPF.ppu
BIN
lib/GPF.ppu
Binary file not shown.
BIN
lib/IDE.ppu
BIN
lib/IDE.ppu
Binary file not shown.
BIN
lib/IDOE.ppu
BIN
lib/IDOE.ppu
Binary file not shown.
BIN
lib/IOPE.ppu
BIN
lib/IOPE.ppu
Binary file not shown.
BIN
lib/MCE.ppu
BIN
lib/MCE.ppu
Binary file not shown.
BIN
lib/NCE.ppu
BIN
lib/NCE.ppu
Binary file not shown.
BIN
lib/NMIE.ppu
BIN
lib/NMIE.ppu
Binary file not shown.
BIN
lib/OOBE.ppu
BIN
lib/OOBE.ppu
Binary file not shown.
BIN
lib/PCI.ppu
BIN
lib/PCI.ppu
Binary file not shown.
BIN
lib/PF.ppu
BIN
lib/PF.ppu
Binary file not shown.
Binary file not shown.
BIN
lib/RTC.ppu
BIN
lib/RTC.ppu
Binary file not shown.
BIN
lib/SFE.ppu
BIN
lib/SFE.ppu
Binary file not shown.
BIN
lib/SNPE.ppu
BIN
lib/SNPE.ppu
Binary file not shown.
Binary file not shown.
BIN
lib/UIE.ppu
BIN
lib/UIE.ppu
Binary file not shown.
BIN
lib/USB.ppu
BIN
lib/USB.ppu
Binary file not shown.
BIN
lib/arp.ppu
BIN
lib/arp.ppu
Binary file not shown.
BIN
lib/asuro.ppu
BIN
lib/asuro.ppu
Binary file not shown.
Binary file not shown.
BIN
lib/console.o
BIN
lib/console.o
Binary file not shown.
BIN
lib/console.ppu
BIN
lib/console.ppu
Binary file not shown.
BIN
lib/cpu.ppu
BIN
lib/cpu.ppu
Binary file not shown.
Binary file not shown.
BIN
lib/eth2.ppu
BIN
lib/eth2.ppu
Binary file not shown.
BIN
lib/fat32.ppu
BIN
lib/fat32.ppu
Binary file not shown.
BIN
lib/gdt.ppu
BIN
lib/gdt.ppu
Binary file not shown.
BIN
lib/idt.ppu
BIN
lib/idt.ppu
Binary file not shown.
BIN
lib/ipv4.ppu
BIN
lib/ipv4.ppu
Binary file not shown.
BIN
lib/irq.ppu
BIN
lib/irq.ppu
Binary file not shown.
BIN
lib/isr.ppu
BIN
lib/isr.ppu
Binary file not shown.
BIN
lib/kernel.ppu
BIN
lib/kernel.ppu
Binary file not shown.
BIN
lib/keyboard.ppu
BIN
lib/keyboard.ppu
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
lib/libpsystem.a
BIN
lib/libpsystem.a
Binary file not shown.
BIN
lib/lists.ppu
BIN
lib/lists.ppu
Binary file not shown.
Binary file not shown.
BIN
lib/memview.ppu
BIN
lib/memview.ppu
Binary file not shown.
BIN
lib/mouse.ppu
BIN
lib/mouse.ppu
Binary file not shown.
BIN
lib/net.ppu
BIN
lib/net.ppu
Binary file not shown.
BIN
lib/netutils.ppu
BIN
lib/netutils.ppu
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
lib/serial.ppu
BIN
lib/serial.ppu
Binary file not shown.
BIN
lib/shell.ppu
BIN
lib/shell.ppu
Binary file not shown.
BIN
lib/splash.ppu
BIN
lib/splash.ppu
Binary file not shown.
Binary file not shown.
BIN
lib/strings.ppu
BIN
lib/strings.ppu
Binary file not shown.
BIN
lib/terminal.ppu
BIN
lib/terminal.ppu
Binary file not shown.
Binary file not shown.
BIN
lib/tracer.ppu
BIN
lib/tracer.ppu
Binary file not shown.
BIN
lib/tss.ppu
BIN
lib/tss.ppu
Binary file not shown.
BIN
lib/util.ppu
BIN
lib/util.ppu
Binary file not shown.
Binary file not shown.
@ -201,6 +201,7 @@ procedure _MouseUp();
|
|||||||
procedure _MouseClick(left : boolean);
|
procedure _MouseClick(left : boolean);
|
||||||
|
|
||||||
procedure setWindowColors(colors : uint32);
|
procedure setWindowColors(colors : uint32);
|
||||||
|
function getWindowColorPtr : puint32;
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
@ -319,6 +320,11 @@ var
|
|||||||
MouseCursorEnabled : Boolean = true;
|
MouseCursorEnabled : Boolean = true;
|
||||||
OpenTerminal : Boolean = false;
|
OpenTerminal : Boolean = false;
|
||||||
|
|
||||||
|
function getWindowColorPtr : puint32;
|
||||||
|
begin
|
||||||
|
getWindowColorPtr:= @Window_Border.Attributes;
|
||||||
|
end;
|
||||||
|
|
||||||
procedure setWindowColors(colors : uint32);
|
procedure setWindowColors(colors : uint32);
|
||||||
begin
|
begin
|
||||||
Window_Border.Attributes:= colors;
|
Window_Border.Attributes:= colors;
|
||||||
@ -1087,6 +1093,7 @@ begin
|
|||||||
if (key_info.CTRL_DOWN) and (key_info.ALT_DOWN) then begin
|
if (key_info.CTRL_DOWN) and (key_info.ALT_DOWN) then begin
|
||||||
case key_info.key_code of
|
case key_info.key_code of
|
||||||
uint8('c'):OpenTerminal:=true;
|
uint8('c'):OpenTerminal:=true;
|
||||||
|
uint8('r'):resetSystem;
|
||||||
end;
|
end;
|
||||||
end else begin
|
end else begin
|
||||||
if WindowManager.Z_Order[0] <> MAX_WINDOWS then begin
|
if WindowManager.Z_Order[0] <> MAX_WINDOWS then begin
|
||||||
|
@ -9,14 +9,14 @@ const
|
|||||||
VERSION_SUB = '1';
|
VERSION_SUB = '1';
|
||||||
REVISION = '664';
|
REVISION = '664';
|
||||||
RELEASE = 'ia';
|
RELEASE = 'ia';
|
||||||
LINE_COUNT = 27151;
|
LINE_COUNT = 27361;
|
||||||
FILE_COUNT = 83;
|
FILE_COUNT = 84;
|
||||||
DRIVER_COUNT = 28;
|
DRIVER_COUNT = 28;
|
||||||
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 = '06/05/18';
|
COMPILE_DATE = '06/05/18';
|
||||||
COMPILE_TIME = '00:38:59';
|
COMPILE_TIME = '06:55:52';
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
|
@ -41,7 +41,8 @@ uses
|
|||||||
shell,
|
shell,
|
||||||
memview,
|
memview,
|
||||||
splash,
|
splash,
|
||||||
cpu;
|
cpu,
|
||||||
|
themer;
|
||||||
|
|
||||||
procedure kmain(mbinfo: Pmultiboot_info_t; mbmagic: uint32); stdcall;
|
procedure kmain(mbinfo: Pmultiboot_info_t; mbmagic: uint32); stdcall;
|
||||||
|
|
||||||
@ -200,6 +201,7 @@ begin
|
|||||||
{ Init Progs }
|
{ Init Progs }
|
||||||
shell.init();
|
shell.init();
|
||||||
memview.init();
|
memview.init();
|
||||||
|
themer.init();
|
||||||
|
|
||||||
{ Init Splash }
|
{ Init Splash }
|
||||||
splash.init();
|
splash.init();
|
||||||
|
@ -6,6 +6,9 @@ uses
|
|||||||
Console, RTC, terminal, strings, asuro;
|
Console, RTC, terminal, strings, asuro;
|
||||||
|
|
||||||
procedure init();
|
procedure init();
|
||||||
|
function getTaskbarColorsPtr : puint32;
|
||||||
|
function getExploreColorsPtr : puint32;
|
||||||
|
function getDesktopColorsPtr : puint32;
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
@ -16,6 +19,21 @@ var
|
|||||||
Explore_Colors : uint32;
|
Explore_Colors : uint32;
|
||||||
Desktop_Colors : uint32;
|
Desktop_Colors : uint32;
|
||||||
|
|
||||||
|
function getTaskbarColorsPtr : puint32;
|
||||||
|
begin
|
||||||
|
getTaskbarColorsPtr:= @Takbar_Colors;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function getExploreColorsPtr : puint32;
|
||||||
|
begin
|
||||||
|
getExploreColorsPtr:= @Explore_Colors;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function getDesktopColorsPtr : puint32;
|
||||||
|
begin
|
||||||
|
getDesktopColorsPtr:= @Desktop_Colors;
|
||||||
|
end;
|
||||||
|
|
||||||
procedure Draw();
|
procedure Draw();
|
||||||
var
|
var
|
||||||
DateTime : TDateTime;
|
DateTime : TDateTime;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user