(no commit message)
authorlkcl <lkcl@web>
Fri, 26 Feb 2021 08:04:41 +0000 (08:04 +0000)
committerIkiWiki <ikiwiki.info>
Fri, 26 Feb 2021 08:04:41 +0000 (08:04 +0000)
openpower/isa.mdwn

index 9b8ce96fdbc76b8b9f26e7f1de12a647559fc9fe..3bc09de9509a214cab795c06f48290472a1a08cb 100644 (file)
@@ -44,8 +44,8 @@ Also worth noting as used in the above example: the following operators are used
 * `<-` assignment, instead of "=" as in python
 * `=` equals comparator, instead of "==" as in python
 * `||` concatenate, done bitwise, in MSB0 order.
-* `>u' for unsigned greater (">" is signed)
-* `<u' for unsigned lessthan ("<" is signed)
+* `>u` for unsigned greater (">" is signed)
+* `<u` for unsigned lessthan ("<" is signed)
 * X superscript n subscript is instead expressed `[X]*n`
 * X subscript n or n:m is expressed as `X[n:m]`