SCMP assert fix (No whatsnew is needed)

This commit is contained in:
Miodrag Milanovic 2009-12-18 11:55:30 +00:00
parent 8a363b4e08
commit ef4d608713

View File

@ -86,7 +86,7 @@ INLINE scmp_state *get_safe_token(const device_config *device)
assert(device != NULL);
assert(device->token != NULL);
assert(device->type == CPU);
assert(cpu_get_type(device) == CPU_SCMP);
assert(cpu_get_type(device) == CPU_SCMP || cpu_get_type(device) == CPU_INS8060);
return (scmp_state *)device->token;
}