mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:38:14 +02:00
11 lines
229 B
ObjectPascal
11 lines
229 B
ObjectPascal
{ utility to avoid the tedious typing of register numbers for RiscV Vector registers }
|
|
var
|
|
i : longint;
|
|
|
|
begin
|
|
for i:=0 to 31 do
|
|
begin
|
|
writeln('V',i,',$04,$00,$',hexstr(i,2),',v',i,',',i+96,',',i+96);
|
|
end;
|
|
end.
|