Changeset 708 for soft/giet_vm/applications/display/display.py
- Timestamp:
- Oct 1, 2015, 4:09:25 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/applications/display/display.py
r644 r708 18 18 x_width = mapping.x_width 19 19 y_width = mapping.y_width 20 21 # define thread placement 22 x = 0 23 y = 0 24 p = 2 20 25 21 26 # define vsegs base & size … … 58 63 59 64 # task 60 mapping.addTask( vspace, 'disp', 0, 0, 0, 1, 'disp_stack', 'disp_heap', 0 ) 65 mapping.addThread( vspace, 'display', 66 True, # is_main 67 x, y, p, 68 'disp_stack', 69 'disp_heap', 70 0 ) # startid 61 71 62 72 # extend mapping name
Note: See TracChangeset
for help on using the changeset viewer.