dmsc
dmsc
I'm liking more the "LSL()" and "LSR()" functions, or as you said that all shifts should be "logical", perhaps "SHR()" and "SHL()" would be even better. Also, it is simpler...
Hi! > Would it be possible to add an optional 4th parameter to MSET in order to to set every other byte or every 3rd byte etc.? No, sorry. Implementing...
> > Does FB have multi-dimension arrays? I tried dim a(9,9) and it threw up an error. I checked manual and it says nothing about it that I can see....
Hi! > No problem, I've just used a variable as a pointer to split a single array into multiple sections. It would be more natural to have multi dimension arrays...
Hi! > I was wondering if you could add a way of incrementing an integer by 256. > > I suspect this would be just like inc only you'd increment...
Hi! > Yeah, it's just for working with memory, moving things up and down screen when each line is a page. > > inc a is 3x faster than a=a+1...
I think that always asking for save before run is enough, and simpler for the user interface.
Hi! You are right, FOR loops with small signed integers is a mess - you run into problems easily. I don't want to add unsigned integers to the language as...
Hi! > But wouldn't it be fairly simple to make a compiler that only uses integers 0-65535 instead of signed? For games programming working without negatives would be easier than...
Another tough, how do you express negative STEP's in a FOR statement with unsigned only arithmetic? Or if you have a "speed" variable, how do you express negative numbers there?...