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