Guest User

Untitled

a guest
Apr 15th, 2011
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.42 KB | None | 0 0
  1.     /* assemble */
  2.     while (readline() != -1) {
  3.       assemble();
  4.       if (loccnt > 0x2000) {
  5.         if (proc_ptr == NULL)
  6.           fatal_error("Bank overflow, offset > $1FFF!");
  7.         else {
  8.           char tmp[128];
  9.  
  10.           sprintf(tmp, "Proc : '%s' is too large (code > 8KB)!", proc_ptr->name);
  11.           fatal_error(tmp);
  12.         }
  13.         break;
  14.       }
  15.       if (stop_pass)
  16.         break;
  17.     }
Add Comment
Please, Sign In to add comment