Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Sample program using the new _Files$ function
#29
Just to clarify the issue I have done this:

Code: (Select All)
Dim b As _Unsigned _Bit * 64
' F - 4-bit
b = &B1111&
Print Hex$(b)
' FF - 8-bit
b = &B11111111&
Print Hex$(b)
' FFF - 12-bit
b = &B111111111111&
Print Hex$(b)
' FFFF - 16-bit
b = &B1111111111111111&
Print Hex$(b)
' FFFFFFFF - 32-bit
b = &B11111111111111111111111111111111&&
Print Hex$(b)
' FFFFFFFFFFFFFFFF - 64-bit
b = &B1111111111111111111111111111111111111111111111111111111111111111~&&
Print Hex$(b)
Reply


Messages In This Thread
RE: Sample program using the new _Files$ function - by eoredson - 02-15-2024, 03:34 AM



Users browsing this thread: 3 Guest(s)