gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:putHex2 from tkernel_2/monitor/cmdsvc/src/console.c (0.00 seconds)
tkernel_2
monitor/cmdsvc/src/console.c - 8.9KB - 293 lines
114: {
115:         if (putHex2(val >> 8) < 0) return -1;
116:         if (putHex2(val >> 0) < 0) return -1;
117:         return 0;
121: { 122: if (putHex2(val >> 24) < 0) return -1; 123: if (putHex2(val >> 16) < 0) return -1; 124: if (putHex2(val >> 8) < 0) return -1; 125: if (putHex2(val >> 0) < 0) return -1; 126: return 0;