diff --git a/tgt-vvp/eval_real.c b/tgt-vvp/eval_real.c index 933210da8..ce8c10d22 100644 --- a/tgt-vvp/eval_real.c +++ b/tgt-vvp/eval_real.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003-2010 Stephen Williams (steve@icarus.com) + * Copyright (c) 2003-2011 Stephen Williams (steve@icarus.com) * * This source code is free software; you can redistribute it * and/or modify it in source code form under the terms of the GNU @@ -457,7 +457,7 @@ static int increment(ivl_expr_t e, int s, bool pre) fprintf(vvp_out, " %%loadi/wr %d, 1, 0x1000; load 1.0\n", one); if (!pre) { - /* + /* * post-increment must return the non-incremented value. * Therefore, copy the current value in a new word and return * it. @@ -496,7 +496,7 @@ static int decrement(ivl_expr_t e, int s, bool pre) fprintf(vvp_out, " %%loadi/wr %d, 1, 0x1000; load 1.0\n", one); if (!pre) { - /* + /* * post-decrement must return the non-incremented value. * Therefore, copy the current value in a new word and return * it. diff --git a/vhdlpp/README.txt b/vhdlpp/README.txt index 2007dd436..e904d94c0 100644 --- a/vhdlpp/README.txt +++ b/vhdlpp/README.txt @@ -47,6 +47,6 @@ in your VHDL code, access packages like this: use bar.test3.all; The *.pkg files are just VHDL code containing only the package with -the same name. When Icarus Verilog encounters the "use ..*;" +the same name. When Icarus Verilog encounters the "use ..*;" statement, it looks for the .pkg file in the library and parses that file to get the package header declared therin.