March 2014 update
This commit is contained in:
parent
09687c4926
commit
a25938f123
1846 changed files with 21876 additions and 5203 deletions
|
|
@ -77,8 +77,8 @@ begin
|
|||
C := P - 1;
|
||||
for J in reverse A'Range loop
|
||||
C := C + Natural(A(J)) * 58;
|
||||
A(J) := Stream_Element(Unsigned_32(C) and 255); -- 0x0F
|
||||
C := Natural(Shift_Right(Unsigned_32(C),8) and 255); -- 0xF0
|
||||
A(J) := Stream_Element(Unsigned_32(C) and 255); -- 0x00FF
|
||||
C := Natural(Shift_Right(Unsigned_32(C),8) and 255); -- 0xFF00
|
||||
end loop;
|
||||
if C /= 0 then
|
||||
raise Invalid_Address_Error;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue