diff options
author | Kartik Agaram <vc@akkartik.com> | 2018-07-15 09:15:45 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2018-07-15 09:15:45 -0700 |
commit | b06d827f902191a9ae52f76a5620481e59575b17 (patch) | |
tree | 5d05bd95b0434412163e0240b3b363a71ccbc238 | |
parent | aa6c342af977b4638361b2e68c3f8cc6888cac24 (diff) | |
download | mu-b06d827f902191a9ae52f76a5620481e59575b17.tar.gz |
4344
-rw-r--r-- | subx/000organization.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subx/000organization.cc b/subx/000organization.cc index 6d739322..71acb491 100644 --- a/subx/000organization.cc +++ b/subx/000organization.cc @@ -112,7 +112,7 @@ int main(int argc, char* argv[]) { atexit(reset); - // run on a 32-bit system + // we require a 32-bit little-endian system assert(sizeof(int) == 4); assert(sizeof(float) == 4); assert_little_endian(); @@ -144,7 +144,7 @@ void assert_little_endian() { const int x = 1; const char* y = reinterpret_cast<const char*>(&x); if (*y != 1) { - cerr << "the SubX VM only runs on little-endian processors. Do you have Intel (or AMD or Atom) inside?\n"; + cerr << "SubX requires a little-endian processor. Do you have Intel (or AMD or Atom) inside?\n"; exit(1); } } |