123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491 |
- /*
- * Standard library
- * Contains basic functions, including timer and memory functions
- */
- // uses math.c
- #define UART_TX_ADDR 0xC02723
- // Timer I/O Addresses
- #define TIMER1_VAL 0xC02739
- #define TIMER1_CTRL 0xC0273A
- #define TIMER2_VAL 0xC0273B
- #define TIMER2_CTRL 0xC0273C
- #define TIMER3_VAL 0xC0273D
- #define TIMER3_CTRL 0xC0273E
- word timer1Value = 0;
- word timer2Value = 0;
- word timer3Value = 0;
- /*
- * TODO:
- * - Convert most of these functions to assembly
- */
- /*
- Copies n words from src to dest
- */
- void memcpy(word* dest, word* src, word n)
- {
- word i;
- for (i = 0; i < n; i++)
- {
- dest[i] = src[i];
- }
- }
- char* memmove(char* dest, const char* src, word n)
- {
- char* from = src;
- char* to = dest;
- if (from == to || n == 0)
- return dest;
- if (to > from && to-from < (word)n)
- {
- /* to overlaps with from */
- /* <from......> */
- /* <to........> */
- /* copy in reverse, to avoid overwriting from */
- word i;
- for(i=n-1; i>=0; i--)
- to[i] = from[i];
- return dest;
- }
- if (from > to && from-to < (word)n)
- {
- /* to overlaps with from */
- /* <from......> */
- /* <to........> */
- /* copy forwards, to avoid overwriting from */
- word i;
- for(i=0; i<n; i++)
- to[i] = from[i];
- return dest;
- }
- memcpy(dest, src, n);
- return dest;
- }
- /*
- Compares n words between a and b
- Returns 1 if similar, 0 otherwise
- */
- word memcmp(word* a, word* b, word n)
- {
- word i;
- for (i = 0; i < n; i++)
- {
- if (a[i] != b[i])
- {
- return 0;
- }
- }
- return 1;
- }
- // Returns length of string
- word strlen(char* str)
- {
- word retval = 0;
- char chr = *str; // first character of str
- while (chr != 0) // continue until null value
- {
- retval += 1;
- str++; // go to next character address
- chr = *str; // get character from address
- }
- return retval;
- }
- /*
- Copies string from src to dest
- Returns number of characters copied
- */
- word strcpy(char* dest, char* src)
- {
- // write to buffer
- word i = 0;
- while (src[i] != 0)
- {
- dest[i] = src[i];
- i++;
- }
- // terminate
- dest[i] = 0;
- return i;
- }
- /*
- Appends string from src to dest
- Returns number of characters appended
- */
- word strcat(char* dest, char* src)
- {
- // move to end of destination
- word endOfDest = 0;
- while (dest[endOfDest] != 0)
- endOfDest++;
- // copy to end of destination
- return strcpy(dest+endOfDest, src);
- }
- /*
- Compares two strings a and b
- Returns 1 if similar, 0 otherwise
- */
- word strcmp(char* a, char* b)
- {
- if (strlen(a) != strlen(b))
- return 0;
- word i = 0;
- while (a[i] != 0)
- {
- if (a[i] != b[i])
- {
- return 0;
- }
- i++;
- }
- return 1;
- }
- /*
- Recursive helper function for itoa
- Eventually returns the number of digits in n
- s is the output buffer
- */
- word itoar(word n, char *s)
- {
- word digit = MATH_modU(n, 10);
- word i = 0;
- n = MATH_divU(n,10);
- if ((unsigned int) n > 0)
- i += itoar(n, s);
- s[i++] = digit + '0';
- return i;
- }
- /*
- Converts integer n to characters.
- The characters are placed in the buffer s.
- The buffer is terminated with a 0 value.
- Uses recursion, division and mod to compute.
- */
- void itoa(word n, char *s)
- {
- // compute and fill the buffer
- word i = itoar(n, s);
- // end with terminator
- s[i] = 0;
- }
- /*
- Recursive helper function for itoa
- Eventually returns the number of digits in n
- s is the output buffer
- */
- word itoahr(word n, char *s)
- {
- word digit = MATH_modU(n, 16);
- word i = 0;
- n = MATH_divU(n,16);
- if ((unsigned int) n > 0)
- i += itoahr(n, s);
- char c;
- if (digit > 9)
- {
- c = digit + 'A' - 10;
- }
- else
- {
- c = digit + '0';
- }
- s[i++] = c;
- return i;
- }
- /*
- Converts integer n to hex string characters.
- The characters are placed in the buffer s.
- A prefix of 0x is added.
- The buffer is terminated with a 0 value.
- Uses recursion, division and mod to compute.
- */
- void itoah(word n, char *s)
- {
- // add prefix
- s[0] = '0';
- s[1] = 'x';
- s+=2;
- // compute and fill the buffer
- word i = itoahr(n, s);
- // end with terminator
- s[i] = 0;
- }
- // isalpha
- word isalpha(char c)
- {
- if (c >= 'A' && c <= 'Z')
- return 2;
- if (c >= 'a' && c <= 'z')
- return 1;
- return 0;
- }
- // isdigit
- word isdigit(char c)
- {
- if (c >= '0' && c <= '9')
- return 1;
- return 0;
- }
- // isalnum
- word isalnum(char c)
- {
- if (isdigit(c) || isalpha(c))
- return 1;
- return 0;
- }
- /*
- Converts string into int.
- Assumes the string is valid.
- */
- word strToInt(char* str)
- {
- word retval = 0;
- word multiplier = 1;
- word i = 0;
- while (str[i] != 0)
- {
- i++;
- }
- if (i == 0)
- return 0;
- i--;
- while (i > 0)
- {
- // Return 0 if not a digit
- if (str[i] < '0' || str[i] > '9')
- return 0;
-
- word currentDigit = str[i] - '0';
- word toAdd = multiplier * currentDigit;
- retval += toAdd;
- multiplier = multiplier * 10;
- i--;
- }
- word currentDigit = str[i] - '0';
- word toAdd = multiplier * currentDigit;
- retval += toAdd;
- return retval;
- }
- /*
- Prints a single char c by writing it to UART_TX_ADDR
- */
- void uprintc(char c)
- {
- word *p = (word *)UART_TX_ADDR; // address of UART TX
- *p = (word)c; // write char over UART
- }
- /*
- Sends each character from str over UART
- by writing them to UART_TX_ADDR
- until a 0 value is found.
- Does not send a newline afterwards.
- */
- void uprint(char* str)
- {
- word *p = (word *)UART_TX_ADDR; // address of UART TX
- char chr = *str; // first character of str
- while (chr != 0) // continue until null value
- {
- *p = (word)chr; // write char over UART
- str++; // go to next character address
- chr = *str; // get character from address
- }
- }
- /*
- Same as uprint(char* str),
- except it sends a newline afterwards.
- */
- void uprintln(char* str)
- {
- uprint(str);
- uprintc('\n');
- }
- /*
- Prints decimal integer over UART
- */
- void uprintDec(word i)
- {
- char buffer[11];
- itoa(i, buffer);
- uprint(buffer);
- uprintc('\n');
- }
- /*
- Prints hex integer over UART
- */
- void uprintHex(word i)
- {
- char buffer[11];
- itoah(i, buffer);
- uprint(buffer);
- uprintc('\n');
- }
- /*
- Prints decimal integer over UART, with newline
- */
- void uprintlnDec(word i)
- {
- char buffer[11];
- itoa(i, buffer);
- uprint(buffer);
- uprintc('\n');
- }
- /*
- Prints hex integer over UART, with newline
- */
- void uprintlnHex(word i)
- {
- char buffer[11];
- itoah(i, buffer);
- uprint(buffer);
- uprintc('\n');
- }
- // sleeps ms using timer1.
- // blocking.
- // requires int1() to set timer1Value to 1:
- /*
- timer1Value = 1; // notify ending of timer1
- */
- void delay(word ms)
- {
- // clear result
- timer1Value = 0;
- // set timer
- word *p = (word *) TIMER1_VAL;
- *p = ms;
- // start timer
- word *q = (word *) TIMER1_CTRL;
- *q = 1;
- // wait until timer done
- while (timer1Value == 0);
- }
- // Returns interrupt ID by using the readintid asm instruction
- word getIntID()
- {
- word retval = 0;
- asm(
- "readintid r2 ;reads interrupt id to r2\n"
- "write -4 r14 r2 ;write to stack to return\n"
- );
- return retval;
- }
- // Converts char c to uppercase if possible
- char toUpper(char c)
- {
- if (c>96 && c<123)
- c = c ^ 0x20;
- return c;
- }
- // Converts string str to uppercase if possible
- void strToUpper(char* str)
- {
- char chr = *str; // first character of str
- while (chr != 0) // continue until null value
- {
- *str = toUpper(chr); // uppercase char
- str++; // go to next character address
- chr = *str; // get character from address
- }
- }
- /*
- For debugging
- Prints a hex dump of size 'len' for each word starting from 'addr'
- Values are printed over UART
- */
- void hexdump(char* addr, word len)
- {
- char buf[16];
- word i;
- for (i = 0; i < len; i++)
- {
- // newline every 8 words
- if (i != 0 && MATH_modU(i, 8) == 0)
- uprintc('\n');
- itoah(addr[i], buf);
- uprint(buf);
- uprintc(' ');
- }
- }
|