git-svn-id: svn://kolibrios.org@4135 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
CleverMouse
2013-10-29 20:50:06 +00:00
parent 673fe8fcae
commit b2d5324420
11 changed files with 260 additions and 242 deletions

View File

@@ -97,6 +97,12 @@ macro cp866 [arg]
end while
}
struc cp866 [arg]
{
common
cp866 arg
}
; Latin-1 encoding
; 0x00-0xFF - trivial map
macro latin1 [arg]
@@ -117,6 +123,12 @@ macro latin1 [arg]
end while
}
struc latin1 [arg]
{
common
latin1 arg
}
; CP850 encoding
macro cp850 [arg]
{ local offs, char, graph
@@ -147,3 +159,9 @@ macro cp850 [arg]
end if
end while
}
struc cp850 [arg]
{
common
cp850 arg
}