Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


This implements command 0xf0 on the keyboard controller port 0x60.
[palacios-OLD.git] / palacios / src / palacios / vmm_packet.c
index f6fd6bb..252bf11 100644 (file)
@@ -24,7 +24,7 @@
 
 static struct v3_packet_hooks * packet_hooks = 0;
 
-int V3_send_raw(const char * pkt, const int len) {
+int V3_send_raw(const char * pkt, uint32_t len) {
     V3_ASSERT(packet_hooks);
     V3_ASSERT(packet_hooks->send);