Changeset 708 for soft/giet_vm/applications/display
- Timestamp:
- Oct 1, 2015, 4:09:25 PM (9 years ago)
- Location:
- soft/giet_vm/applications/display
- Files:
-
- 1 added
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/applications/display/Makefile
r589 r708 1 2 CC = mipsel-unknown-elf-gcc 3 AS = mipsel-unknown-elf-as 4 LD = mipsel-unknown-elf-ld 5 DU = mipsel-unknown-elf-objdump 6 AR = mipsel-unknown-elf-ar 1 7 2 8 APP_NAME = display 3 9 4 OBJS= main.o10 OBJS= display.o 5 11 6 12 LIBS= -L../../build/libs -luser -
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.