- Timestamp:
- 2018-04-04T15:42:37Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2c4e1cc
- Parents:
- 47b2d7e3
- Location:
- boot
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/ia64/src/ski.c
r47b2d7e3 r1433ecda 42 42 43 43 asm volatile ( 44 45 46 47 48 44 "mov r15 = %[cmd]\n" 45 "break 0x80000\n" 46 : 47 : [cmd] "i" (SKI_INIT_CONSOLE) 48 : "r15", "r8" 49 49 ); 50 50 … … 60 60 61 61 asm volatile ( 62 63 64 65 66 67 62 "mov r15 = %[cmd]\n" 63 "mov r32 = %[ch]\n" /* r32 is in0 */ 64 "break 0x80000\n" /* modifies r8 */ 65 : 66 : [cmd] "i" (SKI_PUTCHAR), [ch] "r" (ch) 67 : "r15", "in0", "r8" 68 68 ); 69 69 } -
boot/arch/sparc64/src/main.c
r47b2d7e3 r1433ecda 119 119 uint64_t ver; 120 120 asm volatile ( 121 122 121 "rdpr %%ver, %[ver]\n" 122 : [ver] "=r" (ver) 123 123 ); 124 124 -
boot/genarch/src/multiplication.c
r47b2d7e3 r1433ecda 37 37 /** Set 1 to return INT64_MAX or INT64_MIN on overflow */ 38 38 #ifndef SOFTINT_CHECK_OF 39 39 #define SOFTINT_CHECK_OF 0 40 40 #endif 41 41 … … 45 45 * 46 46 */ 47 static unsigned long long mul(unsigned int a, unsigned int b) { 47 static unsigned long long mul(unsigned int a, unsigned int b) 48 { 48 49 unsigned int a1 = a >> 16; 49 50 unsigned int a2 = a & UINT16_MAX; -
boot/generic/src/str.c
r47b2d7e3 r1433ecda 105 105 /** Check the condition if wchar_t is signed */ 106 106 #ifdef __WCHAR_UNSIGNED__ 107 107 #define WCHAR_SIGNED_CHECK(cond) (true) 108 108 #else 109 109 #define WCHAR_SIGNED_CHECK(cond) (cond) 110 110 #endif 111 111 -
boot/generic/src/version.c
r47b2d7e3 r1433ecda 38 38 39 39 #ifdef REVISION 40 40 static const char *revision = ", revision " STRING(REVISION); 41 41 #else 42 42 static const char *revision = ""; 43 43 #endif 44 44 45 45 #ifdef TIMESTAMP 46 46 static const char *timestamp = " on " STRING(TIMESTAMP); 47 47 #else 48 48 static const char *timestamp = ""; 49 49 #endif 50 50
Note:
See TracChangeset
for help on using the changeset viewer.