Changeset 72 for trunk/hal/x86_64/core/hal_init.c
- Timestamp:
- Jun 27, 2017, 10:56:25 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/x86_64/core/hal_init.c
r70 r72 27 27 #include <hal_lapic.h> 28 28 #include <hal_internal.h> 29 #include <hal_remote.h> 29 30 30 31 #include <memcpy.h> … … 175 176 176 177 x86_printf("-> mytest = %z\n", mytest); 178 177 179 size_t *myptr = (void *)CLUSTER_MIN_VA(0) + XPTR(0, &mytest); 178 *myptr = 1;179 x86_printf("-> mytest = %z\n", mytest);180 hal_remote_sb((xptr_t)myptr, 1); 181 x86_printf("-> mytest = %z\n", hal_remote_lb((xptr_t)myptr)); 180 182 181 183 init_bootinfo(&btinfo);
Note: See TracChangeset
for help on using the changeset viewer.