Author Topic: Unicode characters  (Read 9879 times)

nidud

  • Member
  • *****
  • Posts: 2388
    • https://github.com/nidud/asmc
Re: Unicode characters
« Reply #15 on: July 18, 2017, 05:39:31 AM »
deleted
« Last Edit: February 26, 2022, 01:07:00 AM by nidud »

habran

  • Member
  • *****
  • Posts: 1228
    • uasm
Re: Unicode characters
« Reply #16 on: July 18, 2017, 10:29:45 AM »
Hi Nidud,
I think we have solved that problem in next release
If you use Russian windows than I suppose western characters will be 2 bytes, than that problem would remain unsolved
This way both can be used at the same time
we can cover first 3 UTF-8 cases:
1.)  00 to 7F hex (0 to 127): first and only byte of a sequence.
2.)  80 to BF hex (128 to 191): continuing byte in a multi-byte sequence.
3.)  C2 to DF hex (194 to 223): first byte of a two-byte sequence.
4.)  E0 to EF hex (224 to 239): first byte of a three-byte sequence.
5.)  F0 to FF hex (240 to 255): first byte of a four-byte sequence.

We hope it'll works as expected, we'll see. :biggrin:
Addition that we've added doesn't affect normal cases only above 7Fh
Hopefully, Johnsa will upload it today, if he get some spare time 8)
Cod-Father

jj2007

  • Member
  • *****
  • Posts: 13957
  • Assembly is fun ;-)
    • MasmBasic
Re: Unicode characters
« Reply #17 on: July 18, 2017, 05:01:25 PM »
If you use Russian windows than I suppose western characters will be 2 bytes, than that problem would remain unsolved

Which problem? "everything becomes Russian", no need for Western characters :bgrin:

habran

  • Member
  • *****
  • Posts: 1228
    • uasm
Re: Unicode characters
« Reply #18 on: July 18, 2017, 06:10:56 PM »
I meant it is nice to be able to use mixed cases on either side 8)
Hopefully it'll work as I expected :greenclp:
Cod-Father

nidud

  • Member
  • *****
  • Posts: 2388
    • https://github.com/nidud/asmc
Re: Unicode characters
« Reply #19 on: July 19, 2017, 12:10:00 AM »
deleted
« Last Edit: February 26, 2022, 01:07:15 AM by nidud »