Changeset 762 for soft/giet_vm
- Timestamp:
- Jan 19, 2016, 11:36:43 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_python/mapping.py
r742 r762 116 116 'SCHED', 117 117 'HEAP', 118 'MMAP', 118 119 ] 119 120 … … 384 385 mode, # CXWU flags 385 386 vtype, # vseg type 386 x ,# destination x coordinate387 y ,# destination y coordinate388 pseg ,# destination pseg name387 x = 0, # destination x coordinate 388 y = 0, # destination y coordinate 389 pseg = 'RAM', # destination pseg name 389 390 local = False, # only mapped in local PTAB if true 390 391 big = False, # to be mapped in a big physical page … … 515 516 byte_stream += self.int2bytes(4, self.total_irqs) 516 517 byte_stream += self.int2bytes(4, self.total_periphs) 518 byte_stream += self.int2bytes(60, 0) # padding 517 519 byte_stream += self.str2bytes(256, self.name) 518 520
Note: See TracChangeset
for help on using the changeset viewer.