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

This commit is contained in:
kieron
2018-04-29 19:10:51 +00:00
parent 2fb551d5ec
commit 360c3eba3e
11 changed files with 12 additions and 12 deletions

View File

@ -279,12 +279,12 @@ var
i : uint32;
begin
push_trace('util.memset');
//push_trace('util.memset');
for i:=0 to size-1 do begin
loc:= puint8(location + i);
loc^:= value;
end;
pop_trace;
//pop_trace;
end;
procedure memcpy(source : uint32; dest : uint32; size : uint32);
@ -293,13 +293,13 @@ var
i : uint32;
begin
push_trace('util.memcpy');
//push_trace('util.memcpy');
for i:=0 to size-1 do begin
src:= puint8(source + i);
dst:= puint8(dest + i);
dst^:= src^;
end;
pop_trace;
//pop_trace;
end;
function getWord(i : uint32; hi : boolean) : uint16;