The unified diff between revisions [58a3ccba..] and [d9b0a732..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'src/lsi/vm.c'
# # old_revision [58a3ccba47e51398ea76582c5b4a94bf8af04187] # new_revision [d9b0a732b453297cf427327bd78b4fc4258f15ee] # # patch "src/lsi/vm.c" # from [21cb4758184746d16520d59606f7d02c7f055f6a] # to [2f4df836fac21746563e434768e4f832c1ea3e15] # ============================================================ --- src/lsi/vm.c 21cb4758184746d16520d59606f7d02c7f055f6a +++ src/lsi/vm.c 2f4df836fac21746563e434768e4f832c1ea3e15 @@ -609,6 +609,11 @@ void vm_init_functions(void) assert(vm_codearea[2] == VERSION1); assert(vm_codearea[3] == VERSION2); + assert(GETINT(vm_codearea, 8) == vm_abiversion1); + assert(GETINT(vm_codearea, 12) == vm_abiversion2); + assert(GETINT(vm_codearea, 16) == vm_abiversion3); + assert(GETINT(vm_codearea, 20) == vm_abiversion4); + assert(GETINT(vm_codearea, 24) == vm_abiversion5); /* Now, get the function table pointer */ t = GETINT(vm_codearea, 4);