Changeset ac5665a in mainline


Ignore:
Timestamp:
2005-10-08T09:37:07Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e0cdb7b6
Parents:
cad5ce8
Message:

Finalize mm mapping test #1 once again.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/mm/mapping1/test.c

    rcad5ce8 rac5665a  
    4343{
    4444        __address frame0, frame1;
    45         volatile __u32 v0, v1;
     45        __u32 v0, v1;
    4646
    4747        printf("Memory management test mapping #1\n");
     
    7474        v1 = *((__u32 *) PAGE1);
    7575       
    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));
    7878
    7979        ASSERT(v0 == 0);
Note: See TracChangeset for help on using the changeset viewer.