- Timestamp:
- Jun 10, 2014, 2:32:56 PM (10 years ago)
- Location:
- soft/giet_vm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/Makefile
r326 r327 182 182 183 183 ### mapping generation: map.bin / map.xml / hard_config.h / giet_vsegs.ld 184 map.bin: $(ARCH)/genmap.py $(APP)/$(APP).py 185 giet_python/tsarmap --arch=$(ARCH) --x=$(X) --y=$(Y) --p=$(P) --giet=. --$(APP) --xml=. 186 187 hard_config.h: $(ARCH)/genmap.py $(APP)/$(APP).py 188 giet_python/tsarmap --arch=$(ARCH) --x=$(X) --y=$(Y) --p=$(P) --giet=. --$(APP) --xml=. 189 190 giet_vsegs.ld: $(ARCH)/genmap.py $(APP)/$(APP).py 191 giet_python/tsarmap --arch=$(ARCH) --x=$(X) --y=$(Y) --p=$(P) --giet=. --$(APP) --xml=. 184 map.bin hard_config.h giet_vsegs.ld: $(ARCH)/genmap.py $(APP)/$(APP).py 185 giet_python/genmap --arch=$(ARCH) --x=$(X) --y=$(Y) --p=$(P) --giet=. --$(APP) --xml=. 192 186 193 187 ### drivers compilation -
soft/giet_vm/giet_python/mapping.py
r326 r327 779 779 780 780 # build string 781 s = '/* Generated by tsarmap for %s */\n' % self.name781 s = '/* Generated by genmap for %s */\n' % self.name 782 782 s += '\n' 783 783 … … 1086 1086 1087 1087 # build string 1088 s = '/* Generated by tsarmap for %s */\n' % self.name1088 s = '/* Generated by genmap for %s */\n' % self.name 1089 1089 s += '\n' 1090 1090 s += '#ifndef HARD_CONFIG_H\n' … … 1577 1577 # used for almos configuration 1578 1578 # header 1579 s = '# arch.info file generated by tsarmap for %s\n' % self.name1579 s = '# arch.info file generated by genmap for %s\n' % self.name 1580 1580 s += '\n' 1581 1581 s += '[HEADER]\n'
Note: See TracChangeset
for help on using the changeset viewer.