+/* poke-rls.c
+ * Linux-side communication packet utility
+ * NetWatch system management mode administration console
+ *
+ * Copyright (c) 2008 Jacob Potter and Joshua Wise. All rights reserved.
+ * This program is free software; you can redistribute and/or modify it under
+ * the terms found in the file LICENSE in the root of this source tree.
+ *
+ */
+
#include <sys/io.h>
#include <reg-82801b.h>
#include <string.h>
printf("returned %p\n", res);
if (res == 42) {
- printf("%s\n", packet->data);
- printf("%s\n", packet->data+41);
- printf("%s\n", packet->data+82);
- printf("%s\n", packet->data+123);
+ int i;
+ for (i = 0; i < 96; i++)
+ printf("%s\n", packet->data + i * 41);
}
}