File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -34,15 +34,15 @@ export class BasePeripheral implements Peripheral {
3434 ) { }
3535
3636 readUint32 ( offset : number ) {
37- this . warn ( `Unimplemented peripheral read from ${ offset . toString ( 16 ) } ` ) ;
37+ this . warn ( `Unimplemented peripheral read from 0x ${ offset . toString ( 16 ) } ` ) ;
3838 if ( offset > 0x1000 ) {
3939 this . warn ( 'Unimplemented read from peripheral in the atomic operation region' ) ;
4040 }
4141 return 0xffffffff ;
4242 }
4343
4444 writeUint32 ( offset : number , value : number ) {
45- this . warn ( `Unimplemented peripheral write to ${ offset . toString ( 16 ) } : ${ value } ` ) ;
45+ this . warn ( `Unimplemented peripheral write to 0x ${ offset . toString ( 16 ) } : 0x ${ value . toString ( 16 ) } ` ) ;
4646 }
4747
4848 writeUint32Atomic ( offset : number , value : number , atomicType : number ) {
You can’t perform that action at this time.
0 commit comments