about summary refs log tree commit diff stats
path: root/subx/000organization.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-07-15 09:15:45 -0700
committerKartik Agaram <vc@akkartik.com>2018-07-15 09:15:45 -0700
commitb06d827f902191a9ae52f76a5620481e59575b17 (patch)
tree5d05bd95b0434412163e0240b3b363a71ccbc238 /subx/000organization.cc
parentaa6c342af977b4638361b2e68c3f8cc6888cac24 (diff)
downloadmu-b06d827f902191a9ae52f76a5620481e59575b17.tar.gz
4344
Diffstat (limited to 'subx/000organization.cc')
-rw-r--r--subx/000organization.cc4
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);
   }
 }