• Beter tester
    so i've written a program in c and i want it tested. will someone here be a beter tester for it? take the app from \\mypc\beter. username is savelron and password in ronsavel. leave comments in the...
  • External RAM memory tester program
    Hello, I am trying to check if addresses bus and data bus are well configured in my external RAM memory. I have done this algorithm #include <XC164.h> #define low_adress 0x400000; #define high_adress...
  • efficient packing
    First, I am using 7.5 so it is an old compiler, but that is the way it is. I have a number of bit variables that I am trying to pack into a byte. they are scattered all across the bit area volatile...
  • Looking for efficiency
    I am using small memory model and I need to write data to an absolute memory location (0xC002), so I'm using the MVAR macro: #define DISPLAY_DATA MVAR(unsigned char, 0xC002) void main(void) { DISPLAY_DATA...
  • Code efficiancy
    Hi all, My code is based on C and I have a lot of cases where I assign a value to a variable. Is it more efficiency to just place the value or first to check if the variable already has this value? ...