Add files via upload

This commit is contained in:
Андрей 2021-03-29 20:43:07 +04:00 committed by GitHub
parent 64c6352265
commit 35131ba393
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
90 changed files with 1738 additions and 0 deletions

View file

@ -0,0 +1,9 @@
SUB MAIN
PRINT "0x0ffff & 0x00ff = " + STRING(0x0ffff & 0x00ff)
PRINT "0xff00 | 0x00ff = " + STRING(0xff00 | 0x00ff)
PRINT "0xff00 ^ 0x00ff = " + STRING(0xff00 ^ 0x00ff)
PRINT "~0xffffffff = " + STRING(~0xffffffff)
PRINT "~0xfffffffe = " + STRING(~0xfffffffe)
PRINT "~0xffffffffffffffffL = " + STRING(~0xffffffffffffffffL)
PRINT "~0xfffffffffffffffeL = " + STRING(~0xfffffffffffffffeL)
END SUB