ptx-90-parser 0.4.4

Parse NVIDIA PTX 9.0 assembly into a structured AST and explore modules via a CLI.
Documentation
### Description

Negate the sign of a and store the result in d.

### Syntax

```
neg.type  d, a;

.type = { .s16, .s32, .s64 };
```

### Semantics

```
d = -a;
```

### Examples

```
neg.s32  r0,a;
```