(int a, int m, int syt, byte[] c, String s)
| 12 | public String comment; |
| 13 | |
| 14 | public platform(int a, int m, int syt, byte[] c, String s) { |
| 15 | arch = a; |
| 16 | mode = m; |
| 17 | code = c; |
| 18 | comment = s; |
| 19 | syntax = syt; |
| 20 | } |
| 21 | |
| 22 | public platform(int a, int m, byte[] c, String s) { |
| 23 | arch = a; |
nothing calls this directly
no outgoing calls
no test coverage detected