u8 a = 0xPA

u8 b = 0xIN
This commit is contained in:
nora 2021-01-31 12:06:53 +01:00
parent 96543f1455
commit 4932ed7660

View file

@ -15,7 +15,7 @@ public class u8 {
/**
* Create a new u8. You need to input a short because that is how Java works.
* The value will be stored in a byte though.
* @param s
* @param s The short value
*/
public u8(short s) {
b = (byte) s;