Search
lxdream.org :: lxdream/src/watch.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/watch.c
changeset 561:533f6b478071
prev480:d28c2992f5ee
next736:a02d1475ccfd
author nkeynes
date Mon May 12 10:00:13 2008 +0000 (15 years ago)
permissions -rw-r--r--
last change Cleanup most of the -Wall warnings (getting a bit sloppy...)
Convert FP code to use fixed banks rather than indirect pointer
(3-4% faster this way now)
file annotate diff log raw
1.1 --- a/src/watch.c Wed Oct 31 11:53:35 2007 +0000
1.2 +++ b/src/watch.c Mon May 12 10:00:13 2008 +0000
1.3 @@ -1,3 +1,21 @@
1.4 +/**
1.5 + * $Id$
1.6 + *
1.7 + * Watchpoint support (for debugging)
1.8 + *
1.9 + * Copyright (c) 2005 Nathan Keynes.
1.10 + *
1.11 + * This program is free software; you can redistribute it and/or modify
1.12 + * it under the terms of the GNU General Public License as published by
1.13 + * the Free Software Foundation; either version 2 of the License, or
1.14 + * (at your option) any later version.
1.15 + *
1.16 + * This program is distributed in the hope that it will be useful,
1.17 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
1.18 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1.19 + * GNU General Public License for more details.
1.20 + */
1.21 +
1.22 #include <stdlib.h>
1.23 #include <string.h>
1.24 #include "mem.h"
.