david942j/seccomp-tools

View on GitHub
lib/seccomp-tools/instruction/stx.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

require 'seccomp-tools/instruction/st'

module SeccompTools
  module Instruction
    # Instruction stx.
    class STX < ST
      # Index register.
      # @return ['X']
      def reg
        'X'
      end
    end
  end
end