mirror of
https://github.com/Smallhacker/disbrowser.git
synced 2025-07-04 18:24:39 +00:00
10 lines
271 B
Kotlin
10 lines
271 B
Kotlin
package com.smallhacker.disbrowser.asm
|
|
|
|
data class MetadataLine(
|
|
val address: Address,
|
|
var label: String? = null,
|
|
var comment: String? = null,
|
|
var preComment: String? = null,
|
|
val flags: MutableList<InstructionFlag> = ArrayList()
|
|
)
|