Changes between Version 6 and Version 7 of DsxTaskModel


Ignore:
Timestamp:
Feb 10, 2008, 7:43:09 PM (16 years ago)
Author:
Nicolas Pouillon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DsxTaskModel

    v6 v7  
    77
    88{{{
    9 tg = TaskModel(
     9TaskModel(
    1010        'tg',
    11         outfifos = ['output'] )
     11        ports = {'output': MwmrOutput(32)} )
    1212}}}
    1313
     
    2222
    2323{{{
    24 tg = TaskModel(
     24TaskModel(
    2525        'tg',
    26         outfifos = ['output'],
     26        ports = {'output': MwmrOutput(32)},
    2727        impl = [ SwTask( 'tg',
    2828                         stack_size = 4096,
     
    4545
    4646{{{
    47 tg = TaskModel(
     47TaskModel(
    4848        'tg',
    49         outfifos = ['output'],
     49        ports = {'output': MwmrOutput(32)},
    5050        impl = [ SwTask( 'tg',
    5151                         stack_size = 4096,
     
    6363
    6464{{{
    65 idct = TaskModel(
     65TaskModel(
    6666        'idct',
    67         infifos = [ 'input' ],
    68         outfifos = [ 'output' ],
     67        ports = {'output': MwmrOutput(64),
     68                 'input': MwmrInput(256)},
    6969        impl = [ SwTask( 'idct',
    7070                         stack_size = 1024,