[Vm-dev] VM Maker: ImageFormat-dtl.28.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Oct 31 23:40:15 UTC 2017


David T. Lewis uploaded a new version of ImageFormat to project VM Maker:
http://source.squeak.org/VMMaker/ImageFormat-dtl.28.mcz

==================== Summary ====================

Name: ImageFormat-dtl.28
Author: dtl
Time: 31 October 2017, 7:40:02.075 pm
UUID: cbbbfbd7-34e4-4710-8210-99a48c85b6f2
Ancestors: ImageFormat-dtl.27

Fix typo, the hypothetical 68003 is a known version number, 68004 is not.

=============== Diff against ImageFormat-dtl.27 ===============

Item was changed:
  ----- Method: ImageFormat class>>knownVersionNumbers (in category 'initialize-release') -----
  knownVersionNumbers
  	"Version numbers currently in use or likely to be used (e.g. 64-bit Cog formats)"
  
  	"ImageFormat knownVersionNumbers collect: [:e | (ImageFormat fromInteger: e) description]"
  
  	^ ( self baseVersionNumbers, "the original format number variants"
  		{
  			6505 .	"Cog and StackVM"
+ 			68003 .	"Cog and StackVM running 64-bit image"
- 			68004 .	"Cog and StackVM running 64-bit image"
  			6521 .	"Spur 32 bit object memory"
  			68019 .	"Spur 64 bit object memory (early)"
  			68021 .	"Spur 64 bit object memory"
  				" ... add others here as bits are allocated to represent requirements of other image formats"
  		} ) sort.
  !



More information about the Vm-dev mailing list