(int addr, short value)
| 174 | } |
| 175 | |
| 176 | public void write(int addr, short value) { |
| 177 | writeShort(impl.instrs, addr, value); |
| 178 | } |
| 179 | |
| 180 | protected void ensureCapacity(int n) { |
| 181 | if ( (ip+n)>=impl.instrs.length ) { // ensure room for full instruction |
nothing calls this directly
no test coverage detected