From 94e88e887cf2ee4c6b445924d26e134a90bcbd50 Mon Sep 17 00:00:00 2001 From: Alex AUVOLAT Date: Tue, 5 Nov 2013 10:18:00 +0100 Subject: Reorganized folders. --- csim/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'csim/main.c') diff --git a/csim/main.c b/csim/main.c index ad23cd8..a43d7c9 100644 --- a/csim/main.c +++ b/csim/main.c @@ -16,7 +16,7 @@ void usage() { printf ("\nUsage:\n\tcsim [options] \n\n"); printf("Available options:\n"); printf("\n -rom \n\tLoad a filename as a ROM file for the machine\n"); - printf("\n -n \n\tOnly run #steps steps of simulation (-1 = infinity)\n"); + printf("\n -n \n\tOnly run #steps steps of simulation (0 = infinity)\n"); printf("\n -in \n\tRead inputs from given file (eg. named pipe). Defaults to STDIN.\n"); printf("\n -out \n\tWrite outputs to given file (eg. named pipe). Defaults to STDOut.\n"); exit(1); @@ -81,7 +81,7 @@ int main(int argc, char **argv) { // Run t_machine *machine = init_machine(program); i = 0; - while (i < steps || steps == -1) { + while (i < steps || steps == 0) { read_inputs(machine, input); machine_step(machine); write_outputs(machine, output); -- cgit v1.2.3