#!/bin/sh
if [ ! -n "$2" ] ; then
  echo "Usage: $0 <hexaddr> <val>: Write halfword to address"
else
  echo w $1 $2 1 h > /proc/bcmlog
fi
