Changes between Version 8 and Version 9 of Arch/Soclib/Tutorial


Ignore:
Timestamp:
Jun 14, 2010, 3:30:53 PM (14 years ago)
Author:
Nicolas Pouillon
Comment:

Highlighting

Legend:

Unmodified
Added
Removed
Modified
  • Arch/Soclib/Tutorial

    v8 v9  
    3838
    3939{{{
     40#!sh
    4041svn co -r 1489 https://www.mutekh.org/svn/mutekh/trunk/mutekh
    4142}}}
     
    4748 * Writing the source code in `hello.c`
    4849{{{
     50#!c
    4951#include <pthread.h>
    5052
     
    7274 * Writing the `Makefile`
    7375{{{
     76#!Makefile
    7477objs = hello.o
    7578}}}
     
    125128
    126129{{{
     130#!sh
    127131… $ cd soclib/soclib/platform/topcells/caba-vgmn-mutekh_soclib_tutorial
    128132caba-vgmn-mutekh_soclib_tutorial $ make
     
    142146
    143147{{{
     148#!sh
    144149caba-vgmn-mutekh_soclib_tutorial $ ls
    145150Makefile  README  arch.fig  block0.iso  default_caba:-0x7c4e9665_38f32183__top.o  iso_contents  platform_desc  system.x  top.cpp
     
    151156Simply run the simulator passing it the MutekH binary kenrel file:
    152157{{{
     158#!sh
    153159$ ./system.x path/to/mutekh/hello-soclib-arm.out
    154160}}}