You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
261 B

var extend = require('util')._extend,
archs = ['arm64', 'arm', 'hexagon', 'mips', 'ppc', 'sparc', 'systemz', 'x86'],
i
module.exports = require('./keystone')
for (i = 0; i < archs.length; ++i) {
extend(module.exports, require('./' + archs[i]));
}