invpe
invpe
Script: ``` STARTHERE = 274148111 ENDHERE = STARTHERE+100 PRINT STARTHERE,"->",ENDHERE; FOR Z = STARTHERE TO ENDHERE PRINT Z; NEXT Z ``` Execution: ``` 274148111->274148192
Run this simple script **10000** times and you'll end up eating your memory. ``` DEF TEST() PRINT "WHATEVER"; ENDDEF PRINT "HELLO WORLD"; ``` Runtime logs: ``` 22:14:00.174 -> Exe /last.bas...
Error when compiling with undefined MB_ENABLE_STACK_TRACE ``` my_basic.c:14689:14: error: 'l' undeclared (first use in this function) mb_unrefvar(l); ``` ``` /* Get stack frame count of a MY-BASIC environment */ int...
When looking at the bictcoin wiki: https://en.bitcoin.it/wiki/Block_hashing_algorithm It is clearly mentioned that merkle root hash should be reversed. ``` $prevBlockHash = SwapOrder('00000000000008a3a41b85b8b29ad444def299fee21793cd8b9e567eab02cd81'); $rootHash = SwapOrder('2b12fcf1b09288fcaff797d71e950e71ae42b91e8bdb2304758dfcffc2b620e3'); ``` When looking at the...
When looking through the sources, i noticed that the [miner](https://github.com/BitMaker-hub/NerdMiner_v2/blob/dev/src/mining.cpp#L265C6-L265C52) does double sha256 hash on `blockheader+64`. But the only thing that changes during the iterations are `nonce` values, which is...
What's the required blockheader format for NerdSHA256Plus ? When given the block header in LE format (as it comes from the pool), with reversed merkle (post double sha256) to keep...