hi,
 I found why the error of "panic: Page table fault when accessing virtual 
address 0" will occur.
 See the following program:
     int main( void )
    {
          double a[2];
          a[0] = 2.3;
          a[1] = 5.7;
  
          printf( "a[0] = %f\n", a[0] );
    }

    When you define an array of float point and you print the element of the 
array with printf ,then the fault will occur.
    But i don't know why?

    Thank you!

 
 
_______________________________________________
m5-users mailing list
[email protected]
http://m5sim.org/cgi-bin/mailman/listinfo/m5-users

Reply via email to