#!/bin/sh
if [ ! -n "$3" ] ; then
  echo "Usage: $0 <hexaddr> <val> <length>: Write words to a memory region"
else
  echo w $1 $2 $3 w > /proc/bcmlog
fi
