• C51 long multiple mistake
    Hi: I use c8051f410, Program Size: data=114.1 xdata=100 code=4633 I had to use the long multiple in program and find it can not be excecute properly. The code is as below, Is this stack...
  • Functions with multiple long params
    I've created a little test program that runs fine in the simulator, but causes the hardware (80C390) to reset when a function with multiple long parameters is called. This is with v6.22. Am I missing...
  • Re: Long Integer Multiple Error
    Think you. I modified my source : printf("%lu * %bu = ", N, M); printf("%lu\n", Freq); Freq=25690112L; printf("%lu * %bu = ", Freq, 4); Freq*=4; printf("%lu\n", Freq); It work correctly...
  • Display values larger than a long.
    I need to work with values larger than what can be fit into the 32 bit long available in the compiler. I can store the values in 5 byte arrays, but I need user interaction via a numeric dispaly and keypad...
  • Problems with longs
    Hey, I am trying to do a simple assignment where I am assigning one long to another. The left side of the equal sign is an element in a structure that is part of a union including other structures...