Changeset 768 for soft/giet_vm/applications/shell/shell.py
- Timestamp:
- Jan 20, 2016, 10:15:22 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/applications/shell/shell.py
r712 r768 34 34 heap_size = 0x00001000 # 4 Kbytes 35 35 36 mmap_base = 0x70000000 37 mmap_size = 0x10000000 # 256 Mbytes (unmapped) 38 36 39 # create vspace 37 40 vspace = mapping.addVspace( name = 'shell', startname = 'shell_data' , active = True ) … … 57 60 mapping.addVseg( vspace, 'shell_heap', heap_base, heap_size, 58 61 'C_WU', vtype = 'BUFFER', x = xmap , y = ymap , pseg = 'RAM', 62 local = False ) 63 64 # mmap vseg 65 mapping.addVseg( vspace, 'shell_mmap', mmap_base, mmap_size, 66 'C_WU', vtype = 'MMAP', x = xmap , y = ymap , pseg = 'RAM', 59 67 local = False ) 60 68
Note: See TracChangeset
for help on using the changeset viewer.