Changeset ac5665a in mainline
- Timestamp:
- 2005-10-08T09:37:07Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e0cdb7b6
- Parents:
- cad5ce8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
test/mm/mapping1/test.c
rcad5ce8 rac5665a 43 43 { 44 44 __address frame0, frame1; 45 volatile__u32 v0, v1;45 __u32 v0, v1; 46 46 47 47 printf("Memory management test mapping #1\n"); … … 74 74 v1 = *((__u32 *) PAGE1); 75 75 76 printf("Value at virtual address %P is %X.\n", PAGE0, v0 =*((__u32 *) PAGE0));77 printf("Value at virtual address %P is %X.\n", PAGE1, v1 =*((__u32 *) PAGE1));76 printf("Value at virtual address %P is %X.\n", PAGE0, *((__u32 *) PAGE0)); 77 printf("Value at virtual address %P is %X.\n", PAGE1, *((__u32 *) PAGE1)); 78 78 79 79 ASSERT(v0 == 0);
Note:
See TracChangeset
for help on using the changeset viewer.