Eliot Miranda uploaded a new version of Cog to project VM Maker:
http://source.squeak.org/VMMaker/Cog-eem.386.mcz==================== Summary ====================
Name: Cog-eem.386
Author: eem
Time: 25 December 2019, 7:36:00.025797 pm
UUID: 0a3d6019-cedb-4c45-b0f1-818795c89cf3
Ancestors: Cog-eem.385
Implement controlRegisterGetters for the CogProcessorAlienInspector.
=============== Diff against Cog-eem.385 ===============
Item was added:
+ ----- Method: BochsIA32Alien>>controlRegisterGetters (in category 'accessing-abstract') -----
+ controlRegisterGetters
+ ^#(eip eflags)!
Item was added:
+ ----- Method: BochsX64Alien>>controlRegisterGetters (in category 'accessing-abstract') -----
+ controlRegisterGetters
+ ^#(rip rflags)!
Item was added:
+ ----- Method: CogProcessorAlien>>controlRegisterGetters (in category 'accessing-abstract') -----
+ controlRegisterGetters
+ "Answer an Array of the getters for control state, such as condition flags. The processor inspector
+ is more useful if it highlights real register changes. This set allows it to distinguish normal registers cheaply."
+ ^self subclassResponsibility!
Item was added:
+ ----- Method: GdbARMAlien>>controlRegisterGetters (in category 'accessing-abstract') -----
+ controlRegisterGetters
+ ^#(pc eflags)!