- Timestamp:
- 2020-06-18T15:39:50Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ce52c333
- Parents:
- 4f663f3e
- Location:
- boot/arch
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/arm32/src/putchar.c
r4f663f3e r28a5ebd 193 193 /** Display a character 194 194 * 195 * @param ch Character to display 196 */ 197 void putwchar(const wchar_t ch) 195 * @param ch Character to display 196 * 197 */ 198 void putuchar(const char32_t ch) 198 199 { 199 200 if (ch == '\n') -
boot/arch/arm64/src/main.c
r4f663f3e r28a5ebd 99 99 * 100 100 * @param ch Character to display. 101 */ 102 void putwchar(wchar_t ch) 101 * 102 */ 103 void putuchar(char32_t ch) 103 104 { 104 105 if (ch == '\n') -
boot/arch/ia64/src/putchar.c
r4f663f3e r28a5ebd 33 33 #include <arch/ski.h> 34 34 35 void put wchar(const wchar_t ch)35 void putuchar(const char32_t ch) 36 36 { 37 37 #ifdef MACHINE_ski -
boot/arch/mips32/src/putchar.c
r4f663f3e r28a5ebd 57 57 #endif 58 58 59 void put wchar(const wchar_t ch)59 void putuchar(const char32_t ch) 60 60 { 61 61 if (ascii_check(ch)) -
boot/arch/ppc32/src/ofw.c
r4f663f3e r28a5ebd 39 39 } 40 40 41 void put wchar(wchar_t ch)41 void putuchar(char32_t ch) 42 42 { 43 43 if (ch == '\n') -
boot/arch/riscv64/src/putchar.c
r4f663f3e r28a5ebd 33 33 #include <arch/ucb.h> 34 34 35 void put wchar(wchar_t ch)35 void putuchar(char32_t ch) 36 36 { 37 37 if (ascii_check(ch)) -
boot/arch/sparc64/src/ofw.c
r4f663f3e r28a5ebd 43 43 #include <str.h> 44 44 45 void put wchar(wchar_t ch)45 void putuchar(char32_t ch) 46 46 { 47 47 if (ch == '\n')
Note:
See TracChangeset
for help on using the changeset viewer.