Merge pull request 'Merge feature/hardening into develop' (#11) from feature/hardening into develop
continuous-integration/drone/push Build is passing

Reviewed-on: #11
This commit was merged in pull request #11.
This commit is contained in:
2026-03-01 02:57:23 +00:00
3 changed files with 402 additions and 106 deletions
+397 -106
View File
File diff suppressed because it is too large Load Diff
+2
View File
@@ -414,6 +414,7 @@ var
begin
//push_trace('util.memset');
if size = 0 then exit;
for i:=0 to size-1 do begin
loc:= puint8(location + i);
loc^:= value;
@@ -428,6 +429,7 @@ var
begin
//push_trace('util.memcpy');
if size = 0 then exit;
for i:=0 to size-1 do begin
src:= puint8(source + i);
dst:= puint8(dest + i);
+3
View File
@@ -251,6 +251,9 @@ begin
{ Initialize visual terminal (registers with desktop search) }
vterminal.init;
{ Run unit tests }
strings.UnitTest;
{ Main render loop }
syslog.logln('KERNEL', 'Entering main render loop.');
tracer.push_trace('kmain.MAINLOOP');